@mui/x-charts
Version:
The community edition of the charts components (MUI X).
22 lines (21 loc) • 841 B
TypeScript
export interface ChartsTooltipClasses {
/** Styles applied to the root element. */
root: string;
/** Styles applied to the table element. */
table: string;
/** Styles applied to the row element. */
row: string;
/** Styles applied to the cell element. */
cell: string;
/** Styles applied to the mark element. */
mark: string;
/** Styles applied to the markCell element. */
markCell: string;
/** Styles applied to the labelCell element. */
labelCell: string;
/** Styles applied to the valueCell element. */
valueCell: string;
}
export type ChartsTooltipClassKey = keyof Omit<ChartsTooltipClasses, 'markCell' | 'labelCell' | 'valueCell'>;
export declare function getChartsTooltipUtilityClass(slot: string): string;
export declare const chartsTooltipClasses: ChartsTooltipClasses;