UNPKG

@mui/x-charts

Version:

The community edition of the Charts components (MUI X).

49 lines (48 loc) 1.32 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; const getColor = (series, xAxis, yAxis, zAxis) => { const zColorScale = zAxis?.colorScale; const yColorScale = yAxis?.colorScale; const xColorScale = xAxis?.colorScale; if (zColorScale) { return dataIndex => { if (zAxis?.data?.[dataIndex] !== undefined) { const color = zColorScale(zAxis?.data?.[dataIndex]); if (color !== null) { return color; } } const value = series.data[dataIndex]; const color = value === null ? series.color : zColorScale(value.z); if (color === null) { return series.color; } return color; }; } if (yColorScale) { return dataIndex => { const value = series.data[dataIndex]; const color = value === null ? series.color : yColorScale(value.y); if (color === null) { return series.color; } return color; }; } if (xColorScale) { return dataIndex => { const value = series.data[dataIndex]; const color = value === null ? series.color : xColorScale(value.x); if (color === null) { return series.color; } return color; }; } return () => series.color; }; var _default = exports.default = getColor;