UNPKG

igniteui-angular-charts

Version:

Ignite UI Angular charting components for building rich data visualizations for modern web apps.

27 lines (26 loc) 513 B
import { Type } from "igniteui-angular-core"; /** * Describes available types for enabling error bars */ export declare enum EnableErrorBars { /** * No error bars are enabled */ None = 0, /** * Both error bars are enabled */ Both = 1, /** * Positive error bars are enabled */ Positive = 2, /** * Negative error bars are enabled */ Negative = 3 } /** * @hidden */ export declare let EnableErrorBars_$type: Type;