igniteui-angular-gauges
Version:
Ignite UI Angular gauge components.
26 lines (25 loc) • 1.17 kB
JavaScript
/*
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 shapes that can be used by the backing area of the radial gauge.
*/
export var RadialGaugeBackingShape = /*@__PURE__*/ (function (RadialGaugeBackingShape) {
/**
* A circular backing shape.
*/
RadialGaugeBackingShape[RadialGaugeBackingShape["Circular"] = 0] = "Circular";
/**
* A fitted backing shape.
*/
RadialGaugeBackingShape[RadialGaugeBackingShape["Fitted"] = 1] = "Fitted";
return RadialGaugeBackingShape;
})({});
/**
* @hidden
*/
export var RadialGaugeBackingShape_$type = markEnum('RadialGaugeBackingShape', 'Circular,0|Fitted,1');