@mui/x-charts
Version:
The community edition of the charts components (MUI X).
27 lines (26 loc) • 805 B
TypeScript
import * as React from 'react';
import { AreaElementProps } from './AreaElement';
export interface AreaPlotSlots {
area?: React.JSXElementConstructor<AreaElementProps>;
}
export interface AreaPlotSlotProps {
area?: Partial<AreaElementProps>;
}
export interface AreaPlotProps extends React.SVGAttributes<SVGSVGElement>, Pick<AreaElementProps, 'slots' | 'slotProps'> {
}
/**
* Demos:
*
* - [Lines](https://mui.com/x/react-charts/lines/)
* - [Areas demonstration](https://mui.com/x/react-charts/areas-demo/)
* - [Stacking](https://mui.com/x/react-charts/stacking/)
*
* API:
*
* - [AreaPlot API](https://mui.com/x/api/charts/area-plot/)
*/
declare function AreaPlot(props: AreaPlotProps): React.JSX.Element | null;
declare namespace AreaPlot {
var propTypes: any;
}
export { AreaPlot };