@mui/x-charts
Version:
The community edition of the charts components (MUI X).
17 lines • 652 B
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
var DEFAULT_COLORS = ['#1f77b4', '#ff7f0e', '#2ca02c', '#d62728', '#9467bd', '#8c564b', '#e377c2', '#7f7f7f', '#bcbd22', '#17becf'];
export function defaultizeColor(series, seriesIndex) {
var colors = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : DEFAULT_COLORS;
if (series.type === 'pie') {
return _extends({}, series, {
data: series.data.map(function (d, index) {
return _extends({
color: colors[index % colors.length]
}, d);
})
});
}
return _extends({
color: colors[seriesIndex % colors.length]
}, series);
}