@mui/x-charts
Version:
The community edition of MUI X Charts components.
15 lines • 412 B
TypeScript
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>;
}