import type { FieldData } from '@/types'; import type { Base, Title, Axis, Legend } from '@/components/types'; export interface HistogramLineProps extends Base, Title, Legend, Omit { themeColors?: { colors10: string[]; colors20: string[]; }; adjustType?: string; limit?: number; xAxisData?: FieldData[]; yAxisData?: FieldData[]; zAxisData?: FieldData[]; referenceData?: any[]; optionFilterList?: any[]; zAxisValueLabelColor?: string; yAxisValueLabelColor?: string; isPonit?: boolean; ponitSize?: number; ponitShape?: 'circle'; }