UNPKG

@mui/x-charts

Version:

The community edition of MUI X Charts components.

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