igniteui-angular-gauges
Version:
Ignite UI Angular gauge components.
26 lines (25 loc) • 1.16 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 the position of the titles relative to scale's start/end.
*/
export var TitlesPosition = /*@__PURE__*/ (function (TitlesPosition) {
/**
* The titles are placed at scale's start (minimum value).
*/
TitlesPosition[TitlesPosition["ScaleStart"] = 0] = "ScaleStart";
/**
* The titles are placed at the scale's end (maximum value).
*/
TitlesPosition[TitlesPosition["ScaleEnd"] = 1] = "ScaleEnd";
return TitlesPosition;
})({});
/**
* @hidden
*/
export var TitlesPosition_$type = markEnum('TitlesPosition', 'ScaleStart,0|ScaleEnd,1');