UNPKG

igniteui-angular-charts

Version:

Ignite UI Angular charting components for building rich data visualizations for modern web apps.

26 lines (25 loc) 1.26 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-angular-core"; /** * Describes available behaviors for displaying of gridlines, tickmarks, and labels on a time axis. */ export var TimeAxisDisplayType = /*@__PURE__*/ (function (TimeAxisDisplayType) { /** * Points occur at even intervals, even where data is not present at a given point. */ TimeAxisDisplayType[TimeAxisDisplayType["Continuous"] = 0] = "Continuous"; /** * Points occur when data is present, possibly at uneven intervals. */ TimeAxisDisplayType[TimeAxisDisplayType["Discrete"] = 1] = "Discrete"; return TimeAxisDisplayType; })({}); /** * @hidden */ export var TimeAxisDisplayType_$type = markEnum('TimeAxisDisplayType', 'Continuous,0|Discrete,1');