Files
Iliyan Angelov 306b20e24a Frontend start
2025-09-14 00:54:48 +03:00

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';