UNPKG

@mui/x-charts

Version:

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

14 lines (13 loc) 721 B
import * as React from 'react'; import { CommonChartsReferenceLineProps } from './common'; import { ChartsReferenceLineClasses } from './chartsReferenceLineClasses'; export type ChartsXReferenceLineProps<TValue extends string | number | Date = string | number | Date> = CommonChartsReferenceLineProps & { /** * The x value associated with the reference line. * If defined the reference line will be vertical. */ x: TValue; }; export declare function getXReferenceLineClasses(classes?: Partial<ChartsReferenceLineClasses>): Record<"label" | "line" | "root", string>; declare function ChartsXReferenceLine(props: ChartsXReferenceLineProps): React.JSX.Element | null; export { ChartsXReferenceLine };