@mui/x-charts
Version:
The community edition of the Charts components (MUI X).
16 lines (13 loc) • 317 B
JavaScript
// Series definition
// item identifier
export * from "./line.js";
export * from "./bar.js";
export * from "./scatter.js";
export * from "./pie.js";
// Helpers
export function isDefaultizedBarSeries(series) {
return series.type === 'bar';
}
export function isBarSeries(series) {
return series.type === 'bar';
}