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;
}
