UNPKG

igniteui-angular-gauges

Version:

Ignite UI Angular gauge components.

30 lines (29 loc) 1.34 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"; /** * Enum specifying oversweep shapes. */ export var RadialGaugeScaleOversweepShape = /*@__PURE__*/ (function (RadialGaugeScaleOversweepShape) { /** * A default oversweep shape. */ RadialGaugeScaleOversweepShape[RadialGaugeScaleOversweepShape["Auto"] = 0] = "Auto"; /** * A circular oversweep shape. */ RadialGaugeScaleOversweepShape[RadialGaugeScaleOversweepShape["Circular"] = 1] = "Circular"; /** * A fitted oversweep shape. */ RadialGaugeScaleOversweepShape[RadialGaugeScaleOversweepShape["Fitted"] = 2] = "Fitted"; return RadialGaugeScaleOversweepShape; })({}); /** * @hidden */ export var RadialGaugeScaleOversweepShape_$type = markEnum('RadialGaugeScaleOversweepShape', 'Auto,0|Circular,1|Fitted,2');