UNPKG

@mui/x-charts

Version:

The community edition of MUI X Charts components.

17 lines 691 B
import * as React from 'react'; import { RadarSeriesPlotClasses } from "./radarSeriesPlotClasses.js"; interface CommonRadarSeriesPlotProps { /** * The id of the series to display. * If undefined all series are displayed. */ seriesId?: string; /** * Override or extend the styles applied to the component. */ classes?: Partial<RadarSeriesPlotClasses>; } export interface RadarSeriesPlotProps extends CommonRadarSeriesPlotProps {} export interface RadarSeriesMarksProps extends CommonRadarSeriesPlotProps, React.SVGAttributes<SVGCircleElement> {} export interface RadarSeriesAreaProps extends CommonRadarSeriesPlotProps, React.SVGAttributes<SVGPathElement> {} export {};