UNPKG

reaviz

Version:

Data Visualization using React

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