export interface DatasetColor { borderColor: string; fillColor: string; } export interface BarDatasets { label: string; backgroundColor: string; borderColor: string; data: Array; } export interface DatasetOptions { yAxeLabel: string; yAxisID: string; type?: string; tooltipsPreffix?: string; tooltipsSuffix?: string; colors?: DatasetColor; options?: ChartOptions; } export interface GraphConfig { id: string; title: string; graphsOptions?: DatasetOptions[]; }