@mui/x-charts
Version:
The community edition of MUI X Charts components.
10 lines • 536 B
TypeScript
import { type AxisConfig, type ChartsXAxisProps } from "../models/axis.js";
export declare const useUtilityClasses: (ownerState: Pick<AxisConfig<any, any, ChartsXAxisProps>, "position" | "classes">) => Record<"root" | "line" | "label" | "tickContainer" | "tick" | "tickLabel", string>;
export declare const TICK_LABEL_GAP = 3;
export declare const AXIS_LABEL_TICK_LABEL_GAP = 4;
export declare const defaultProps: {
readonly disableLine: false;
readonly disableTicks: false;
readonly tickSize: 6;
readonly tickLabelMinGap: 4;
};