UNPKG

igniteui-react-charts

Version:

Ignite UI React charting components for building rich data visualizations using TypeScript APIs.

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-react-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 = /*@__PURE__*/ markEnum('TimeAxisLabellingMode', 'Auto,0|Normal,1|Compressed,2');