UNPKG

@mui/x-charts

Version:

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

26 lines (25 loc) 745 B
import * as React from 'react'; import { LineElementProps } from './LineElement'; export interface LinePlotSlots { line?: React.JSXElementConstructor<LineElementProps>; } export interface LinePlotSlotProps { line?: Partial<LineElementProps>; } export interface LinePlotProps extends React.SVGAttributes<SVGSVGElement>, Pick<LineElementProps, 'slots' | 'slotProps'> { } /** * Demos: * * - [Lines](https://mui.com/x/react-charts/lines/) * - [Line demonstration](https://mui.com/x/react-charts/line-demo/) * * API: * * - [LinePlot API](https://mui.com/x/api/charts/line-plot/) */ declare function LinePlot(props: LinePlotProps): React.JSX.Element | null; declare namespace LinePlot { var propTypes: any; } export { LinePlot };