@mui/x-charts
Version:
The community edition of MUI X Charts components.
6 lines • 303 B
TypeScript
export type ChartsRadialAxisHighlightRotationType = 'none' | 'line' | 'band';
export type ChartsRadialAxisHighlightRadiusType = 'none' | 'line' | 'band';
export type ChartsRadialAxisHighlightProps = {
rotation?: ChartsRadialAxisHighlightRotationType;
radius?: ChartsRadialAxisHighlightRadiusType;
};