@mui/x-charts
Version:
The community edition of MUI X Charts components.
13 lines • 998 B
text/typescript
import { type UseChartCartesianAxisSignature } from "./useChartCartesianAxis.types.mjs";
import { type DefaultedXAxis, type DefaultedYAxis } from "../../../../models/axis.mjs";
import { type ChartState } from "../../models/chart.mjs";
export declare const selectorChartCartesianAxisState: (state: ChartState<[], [UseChartCartesianAxisSignature]>) => {
axesGap: number;
x: DefaultedXAxis[];
y: DefaultedYAxis[];
} | undefined;
export type SelectorChartRawXAxisType = <State extends ChartState<[], [UseChartCartesianAxisSignature]>>(state: State) => DefaultedXAxis[] | undefined;
export declare const selectorChartRawXAxis: SelectorChartRawXAxisType;
export type SelectorChartRawYAxisType = <State extends ChartState<[], [UseChartCartesianAxisSignature]>>(state: State) => DefaultedYAxis[] | undefined;
export declare const selectorChartRawYAxis: SelectorChartRawYAxisType;
export declare const selectorChartCartesianAxesGap: (state: ChartState<[], [UseChartCartesianAxisSignature]>) => number;