UNPKG

@mui/x-charts

Version:

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

11 lines (10 loc) 510 B
import { ItemInteractionData } from '../context/InteractionProvider'; import { ChartSeriesType, ChartsSeriesConfig } from '../models/seriesType/config'; export interface UseItemTooltipReturnValue<T extends ChartSeriesType> { identifier: ItemInteractionData<T>; color: string; label: string | undefined; value: ChartsSeriesConfig[T]['valueType']; formattedValue: string | undefined; } export declare function useItemTooltip<T extends ChartSeriesType>(): null | UseItemTooltipReturnValue<T>;