import { EChartAnnotationType, EChartEventProperties } from "../enums"; export interface IChartAnnotation { id?: string; value: number | string; type: EChartAnnotationType; color?: string; borderWidth?: number; // Takes the width of the dash and spacing between them borderDash?: [number, number]; axis: EChartEventProperties; }