UNPKG

scichart

Version:

Fast WebGL JavaScript Charting Library and Framework

14 lines (13 loc) 563 B
import { EDataPointWidthMode } from "../../../types/DataPointWidthMode"; import { EErrorDirection } from "../../../types/ErrorDirection"; import { EErrorMode } from "../../../types/ErrorMode"; import { IRenderableSeries } from "./IRenderableSeries"; export interface IErrorRenderableSeries extends IRenderableSeries { strokeDashArray?: number[]; errorDirection?: EErrorDirection; errorMode?: EErrorMode; dataPointWidth?: number; dataPointWidthMode?: EDataPointWidthMode; drawWhiskers?: boolean; drawConnector?: boolean; }