export interface LineData {
  label: string;
  data: number[];
  formattedData?: string[];
  unit?: string;
}
