UNPKG

@mui/x-charts

Version:

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

48 lines (47 loc) 1.56 kB
import * as React from 'react'; import { SxProps, Theme } from '@mui/material/styles'; import { AxisInteractionData } from '../context/InteractionProvider'; import { ChartSeriesDefaultized, ChartSeriesType } from '../models/seriesType/config'; import { AxisDefaultized } from '../models/axis'; import { ChartsTooltipClasses } from './chartsTooltipClasses'; type ChartSeriesDefaultizedWithColorGetter = ChartSeriesDefaultized<ChartSeriesType> & { getColor: (dataIndex: number) => string; }; export type ChartsAxisContentProps = { /** * Data identifying the triggered axis. */ axisData: AxisInteractionData; /** * The series linked to the triggered axis. */ series: ChartSeriesDefaultizedWithColorGetter[]; /** * The properties of the triggered axis. */ axis: AxisDefaultized; /** * The index of the data item triggered. */ dataIndex?: null | number; /** * The value associated to the current mouse position. */ axisValue: string | number | Date | null; /** * Override or extend the styles applied to the component. */ classes: ChartsTooltipClasses; sx?: SxProps<Theme>; }; /** * @ignore - internal component. */ declare function ChartsAxisTooltipContent(props: { axisData: AxisInteractionData; content?: React.ElementType<ChartsAxisContentProps>; contentProps?: Partial<ChartsAxisContentProps>; sx?: SxProps<Theme>; classes: ChartsAxisContentProps['classes']; }): React.JSX.Element; export { ChartsAxisTooltipContent };