@mui/x-charts
Version:
The community edition of MUI X Charts components.
17 lines (13 loc) • 551 B
JavaScript
// Series definition
// item identifier
// For now the difference between highlight-identifiers and identifiers is the optional `dataIndex` that allows highlighting a series without specifying a given point.
// If we get more different behaviors, we can move to a pattern similar to `SeriesItemIdentifierWithData` and `SeriesItemIdentifier`.
/**
* Identifies an highlighted item or series.
*/
export * from "./line.mjs";
export * from "./bar.mjs";
export * from "./scatter.mjs";
export * from "./pie.mjs";
export * from "./radar.mjs";
export {};