UNPKG

igniteui-angular-charts

Version:

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

34 lines (33 loc) 1.46 kB
/* THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE: https://www.infragistics.com/legal/license/igultimate-la https://www.infragistics.com/legal/license/igultimate-eula GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company. */ import { markEnum } from "igniteui-angular-core"; /** * Describes mode for displaying content of axis annotation */ export var UserAnnotationTarget = /*@__PURE__*/ (function (UserAnnotationTarget) { /** * Specifies slice annotation at specific axis value */ UserAnnotationTarget[UserAnnotationTarget["Slice"] = 0] = "Slice"; /** * Specifies strip annotation from a start to end of an axis */ UserAnnotationTarget[UserAnnotationTarget["Strip"] = 1] = "Strip"; /** * Specifies an annotation of data point on a series */ UserAnnotationTarget[UserAnnotationTarget["Point"] = 2] = "Point"; /** * Specifies an annotation of axis label */ UserAnnotationTarget[UserAnnotationTarget["Axis"] = 3] = "Axis"; return UserAnnotationTarget; })({}); /** * @hidden */ export let UserAnnotationTarget_$type = markEnum('UserAnnotationTarget', 'Slice,0|Strip,1|Point,2|Axis,3');