UNPKG

@mui/x-charts

Version:

The community edition of the Charts components (MUI X).

15 lines 412 B
import { ChartsTooltipProps } from "./ChartsTooltip.js"; export interface ChartsTooltipSlots { /** * Custom component for the tooltip popper. * @default ChartsTooltipRoot */ tooltip?: React.ElementType<ChartsTooltipProps>; } export interface ChartsTooltipSlotProps { /** * Custom component for the tooltip popper. * @default ChartsTooltipRoot */ tooltip?: Partial<ChartsTooltipProps>; }