UNPKG

reaviz

Version:

Data Visualization using React

13 lines (12 loc) 393 B
import { FC } from 'react'; import { ChartNestedDataShape } from '../common/data'; import { RadialAreaChartProps } from '../RadialAreaChart'; export interface RadarChartProps extends RadialAreaChartProps { /** * Data the chart will receive to render. * * @default [] */ data: ChartNestedDataShape[]; } export declare const RadarChart: FC<Partial<RadarChartProps>>;