@mui/x-charts
Version:
The community edition of the Charts components (MUI X).
14 lines (13 loc) • 489 B
TypeScript
export interface ChartsGridClasses {
/** Styles applied to the root element. */
root: string;
/** Styles applied to every line element. */
line: string;
/** Styles applied to x-axes. */
horizontalLine: string;
/** Styles applied to y-axes. */
verticalLine: string;
}
export type ChartsGridClassKey = keyof ChartsGridClasses;
export declare function getChartsGridUtilityClass(slot: string): string;
export declare const chartsGridClasses: ChartsGridClasses;