UNPKG

@mui/x-charts

Version:

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

71 lines (70 loc) 2.56 kB
import _extends from "@babel/runtime/helpers/esm/extends"; import { stack as d3Stack } from 'd3-shape'; import { getStackingGroups } from '../internals/stackSeries'; import defaultizeValueFormatter from '../internals/defaultizeValueFormatter'; let warnOnce = false; const formatter = (params, dataset) => { const { seriesOrder, series } = params; const stackingGroups = getStackingGroups(params); // Create a data set with format adapted to d3 const d3Dataset = dataset ?? []; seriesOrder.forEach(id => { const data = series[id].data; if (data !== undefined) { data.forEach((value, index) => { if (d3Dataset.length <= index) { d3Dataset.push({ [id]: value }); } else { d3Dataset[index][id] = value; } }); } else if (dataset === undefined) { throw new Error([`MUI-X-Charts: bar series with id='${id}' has no data.`, 'Either provide a data property to the series or use the dataset prop.'].join('\n')); } }); const completedSeries = {}; stackingGroups.forEach(stackingGroup => { const { ids, stackingOffset, stackingOrder } = stackingGroup; // Get stacked values, and derive the domain const stackedSeries = d3Stack().keys(ids.map(id => { // Use dataKey if needed and available const dataKey = series[id].dataKey; return series[id].data === undefined && dataKey !== undefined ? dataKey : id; })).value((d, key) => d[key] ?? 0) // defaultize null value to 0 .order(stackingOrder).offset(stackingOffset)(d3Dataset); ids.forEach((id, index) => { const dataKey = series[id].dataKey; completedSeries[id] = _extends({ layout: 'vertical' }, series[id], { data: dataKey ? dataset.map(data => { const value = data[dataKey]; if (typeof value !== 'number') { if (process.env.NODE_ENV !== 'production' && !warnOnce && value !== null) { warnOnce = true; console.error([`MUI-X charts: your dataset key "${dataKey}" is used for plotting bars, but contains nonnumerical elements.`, 'Bar plots only support numbers and null values.']); } return 0; } return value; }) : series[id].data, stackedData: stackedSeries[index].map(([a, b]) => [a, b]) }); }); }); return { seriesOrder, stackingGroups, series: defaultizeValueFormatter(completedSeries, v => v?.toLocaleString()) }; }; export default formatter;