UNPKG

@visactor/react-vchart

Version:

The react version of VChart 4.x

11 lines (10 loc) 451 B
import type React from 'react'; import type { IRadarChartSpec } from '@visactor/vchart'; import type { BaseChartProps } from './BaseChart'; export interface RadarChartProps extends Omit<BaseChartProps, 'container' | 'type' | 'data'>, Omit<Partial<IRadarChartSpec>, 'type'> { } export declare const RadarChart: React.ForwardRefExoticComponent<RadarChartProps & { children?: React.ReactNode; } & { type?: 'radar'; } & React.RefAttributes<any>>;