UNPKG

igniteui-angular-charts

Version:

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

29 lines (28 loc) 1.29 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"; /** */ export var AxisAngleLabelMode = /*@__PURE__*/ (function (AxisAngleLabelMode) { /** * Automatically chooses an appropriate label mode. */ AxisAngleLabelMode[AxisAngleLabelMode["Auto"] = 0] = "Auto"; /** * Labels are all positioned away from the chart radius based on the largest label. */ AxisAngleLabelMode[AxisAngleLabelMode["Center"] = 1] = "Center"; /** * Labels are all positioned as close to the chart as possible. */ AxisAngleLabelMode[AxisAngleLabelMode["ClosestPoint"] = 2] = "ClosestPoint"; return AxisAngleLabelMode; })({}); /** * @hidden */ export var AxisAngleLabelMode_$type = markEnum('AxisAngleLabelMode', 'Auto,0|Center,1|ClosestPoint,2');