/** * Configuration for bar charts * * @interface IBarChartConfig */ export interface IBarChartConfig { horizontal?: boolean; grouped?: boolean; } export interface IStackMetadata { start: number; end: number; }