UNPKG

@mui/x-charts

Version:

The community edition of MUI X Charts components.

7 lines 494 B
import { AxisConfig } from "../../../../models/axis.js"; import { CartesianChartSeriesType } from "../../../../models/seriesType/config.js"; import { ProcessedSeries } from "../../corePlugins/useChartSeries/index.js"; export declare const getAxisDomainLimit: <T extends CartesianChartSeriesType>(axis: AxisConfig, axisDirection: "x" | "y", axisIndex: number, formattedSeries: ProcessedSeries<T | "line">) => "nice" | "strict" | ((min: number, max: number) => { min: number; max: number; });