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