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";
/**
* Describes the orientation of a linear scale.
*/
export var LinearScaleOrientation = /*@__PURE__*/ (function (LinearScaleOrientation) {
/**
* The scale has a horizontal orientation.
*/
LinearScaleOrientation[LinearScaleOrientation["Horizontal"] = 0] = "Horizontal";
/**
* The scale has a vertical orientation.
*/
LinearScaleOrientation[LinearScaleOrientation["Vertical"] = 1] = "Vertical";
return LinearScaleOrientation;
})({});
/**
* @hidden
*/
export var LinearScaleOrientation_$type = markEnum('LinearScaleOrientation', 'Horizontal,0|Vertical,1');