@mui/x-charts
Version:
The community edition of MUI X Charts components.
6 lines • 303 B
TypeScript
/**
* The type of curve to use for the line.
* Read more about curves at
* [line interpolation](https://mui.com/x/react-charts/lines/#interpolation).
*/
export type CurveType = 'catmullRom' | 'linear' | 'monotoneX' | 'monotoneY' | 'natural' | 'step' | 'stepBefore' | 'stepAfter' | 'bumpY' | 'bumpX';