@mui/x-charts
Version:
The community edition of MUI X Charts components.
13 lines • 452 B
TypeScript
import { type SxProps } from '@mui/material/styles';
export interface ChartsAxisHighlightValueItemProps {
x: number;
y: number;
formattedValue: string;
position: 'top' | 'right' | 'bottom' | 'left';
minCoord: number;
maxCoord: number;
space: number;
sx?: SxProps;
}
declare function ChartsAxisHighlightValueItem(props: ChartsAxisHighlightValueItemProps): import("react/jsx-runtime").JSX.Element;
export { ChartsAxisHighlightValueItem };