igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
30 lines (29 loc) • 1.35 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 representing a unit of time.
*/
export var TimeAxisLabellingMode = /*@__PURE__*/ (function (TimeAxisLabellingMode) {
/**
* LabellingMode is decided automatically.
*/
TimeAxisLabellingMode[TimeAxisLabellingMode["Auto"] = 0] = "Auto";
/**
* Labels are presented in a uniform format based on visible interval.
*/
TimeAxisLabellingMode[TimeAxisLabellingMode["Normal"] = 1] = "Normal";
/**
* Labels are shortened by eliminating repeated elements compared to prior values.
*/
TimeAxisLabellingMode[TimeAxisLabellingMode["Compressed"] = 2] = "Compressed";
return TimeAxisLabellingMode;
})({});
/**
* @hidden
*/
export let TimeAxisLabellingMode_$type = markEnum('TimeAxisLabellingMode', 'Auto,0|Normal,1|Compressed,2');