36 lines
1.1 KiB
TypeScript
36 lines
1.1 KiB
TypeScript
import * as React from 'react';
|
|
import { SlotComponentPropsFromProps } from '@mui/x-internals/types';
|
|
import { LineHighlightElementProps } from "./LineHighlightElement.js";
|
|
export interface LineHighlightPlotSlots {
|
|
lineHighlight?: React.JSXElementConstructor<LineHighlightElementProps>;
|
|
}
|
|
export interface LineHighlightPlotSlotProps {
|
|
lineHighlight?: SlotComponentPropsFromProps<LineHighlightElementProps, {}, {}>;
|
|
}
|
|
export interface LineHighlightPlotProps extends React.SVGAttributes<SVGSVGElement> {
|
|
/**
|
|
* Overridable component slots.
|
|
* @default {}
|
|
*/
|
|
slots?: LineHighlightPlotSlots;
|
|
/**
|
|
* The props used for each component slot.
|
|
* @default {}
|
|
*/
|
|
slotProps?: LineHighlightPlotSlotProps;
|
|
}
|
|
/**
|
|
* Demos:
|
|
*
|
|
* - [Lines](https://mui.com/x/react-charts/lines/)
|
|
* - [Line demonstration](https://mui.com/x/react-charts/line-demo/)
|
|
*
|
|
* API:
|
|
*
|
|
* - [LineHighlightPlot API](https://mui.com/x/api/charts/line-highlight-plot/)
|
|
*/
|
|
declare function LineHighlightPlot(props: LineHighlightPlotProps): React.JSX.Element | null;
|
|
declare namespace LineHighlightPlot {
|
|
var propTypes: any;
|
|
}
|
|
export { LineHighlightPlot }; |