import type { FieldData } from '@/types'; import type { Base, Title, XAxis, Label, Legend } from '@/components/types'; export interface RadarChartProps extends Base, Title, Omit, Legend, Omit { isPonit?: boolean; ponitSize?: number; ponitShape?: 'circle' | 'square' | 'bowtie' | 'diamond' | 'hexagon' | 'triangle' | 'triangle-down'; themeColors?: { colors10: string[]; colors20: string[]; }; classificationFieldList?: FieldData[]; indicatorsFieldList?: FieldData[]; limit?: number; fillShape?: boolean; curve?: boolean; zebraLine?: boolean; shapeType: 'line' | 'circle'; ticksLineShow?: boolean; ticksLineGrid?: boolean; ticksLineLabel?: boolean; ticksLineLabelColor?: string; ticksLineLabelSize?: number; ticksLineMax?: number; ticksLineMin?: number; ticksLineCount?: number; optionFilterList?: any[]; }