@mui/x-charts
Version:
The community edition of MUI X Charts components.
7 lines • 370 B
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
const getSeriesWithDefaultValues = (seriesData, seriesIndex, colors) => _extends({}, seriesData, {
id: seriesData.id ?? `auto-generated-id-${seriesIndex}`,
color: seriesData.color ?? colors[seriesIndex % colors.length],
curve: seriesData.curve ?? 'monotoneX'
});
export default getSeriesWithDefaultValues;