@mui/x-charts
Version:
The community edition of MUI X Charts components.
16 lines • 561 B
text/typescript
import { type ChartsTooltipProps } from "./ChartsTooltip.mjs";
import { type TriggerOptions } from "./utils.mjs";
export interface ChartsTooltipSlots<T extends TriggerOptions = TriggerOptions> {
/**
* Custom component for the tooltip popper.
* @default ChartsTooltipRoot
*/
tooltip?: React.ElementType<ChartsTooltipProps<T>>;
}
export interface ChartsTooltipSlotProps<T extends TriggerOptions = TriggerOptions> {
/**
* Custom component for the tooltip popper.
* @default ChartsTooltipRoot
*/
tooltip?: Partial<ChartsTooltipProps<T>>;
}