UNPKG

@mui/x-charts

Version:

The community edition of MUI X Charts components.

12 lines 545 B
import { type ComputedAxisConfig } from "../internals/plugins/featurePlugins/useChartCartesianAxis/index.js"; import { type ChartsXAxisProps, type ChartsYAxisProps } from "../models/index.js"; import { type SeriesId } from "../models/seriesType/common.js"; interface LinePlotDataPoint { d: string; seriesId: SeriesId; color: string; gradientId?: string; hidden: boolean; } export declare function useLinePlotData(xAxes: ComputedAxisConfig<ChartsXAxisProps>, yAxes: ComputedAxisConfig<ChartsYAxisProps>): LinePlotDataPoint[]; export {};