import { ChartTypeRegistry } from 'chart.js'; export interface IBaseDataset { type: keyof ChartTypeRegistry; order?: number; label: string; data: number[] | [number, number][]; hidden?: boolean; borderColor?: string; borderWidth?: number; backgroundColor?: string | string[] | CanvasGradient; color?: string; spanGaps?: boolean; colorEdgeValue?: number; color2?: string; fill?: boolean; yAxisID?: string; shiftValue?: number; isCurrency?: boolean; }