UNPKG

igniteui-angular-charts

Version:

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

27 lines (26 loc) 603 B
import { Type } from "igniteui-angular-core"; /** * Describes mode for displaying content of axis annotation */ export declare enum UserAnnotationTarget { /** * Specifies slice annotation at specific axis value */ Slice = 0, /** * Specifies strip annotation from a start to end of an axis */ Strip = 1, /** * Specifies an annotation of data point on a series */ Point = 2, /** * Specifies an annotation of axis label */ Axis = 3 } /** * @hidden */ export declare let UserAnnotationTarget_$type: Type;