export interface IChartData {
    labels: string[];
    backgroundColor: string[];
    data: number[];
}
