UNPKG

@mui/x-charts

Version:

The community edition of MUI X Charts components.

7 lines 503 B
import type { SeriesId } from "../../../../../models/seriesType/common.mjs"; import type { ChartSeriesType } from "../../../../../models/seriesType/config.mjs"; import type { ProcessedSeries } from "../../../corePlugins/useChartSeries/useChartSeries.types.mjs"; export declare function getNonEmptySeriesArray<OutSeriesType extends Exclude<ChartSeriesType, 'sankey'>>(series: ProcessedSeries<ChartSeriesType>, availableSeriesTypes: Set<OutSeriesType>): { seriesId: SeriesId; type: OutSeriesType; }[];