UNPKG

igniteui-react-core

Version:
88 lines (87 loc) 2.79 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 { TimeAxisBaseDescription } from "./TimeAxisBaseDescription"; import { markType } from "./type"; /** * @hidden */ export let CategoryDateTimeXAxisDescription = /*@__PURE__*/ (() => { class CategoryDateTimeXAxisDescription extends TimeAxisBaseDescription { get_type() { return "CategoryDateTimeXAxis"; } constructor() { super(); this.ej = false; this.ev = null; this.en = 0; this.el = 0; this.eo = 0; this.em = 0; this.et = null; this.eu = null; } get unevenlySpacedLabels() { return this.ej; } set unevenlySpacedLabels(a) { this.ej = a; this.g("UnevenlySpacedLabels"); } get displayType() { return this.ev; } set displayType(a) { this.ev = a; this.g("DisplayType"); } get interval() { return this.en; } set interval(a) { this.en = a; this.g("Interval"); } get actualInterval() { return this.el; } set actualInterval(a) { this.el = a; this.g("ActualInterval"); } get minorInterval() { return this.eo; } set minorInterval(a) { this.eo = a; this.g("MinorInterval"); } get actualMinorInterval() { return this.em; } set actualMinorInterval(a) { this.em = a; this.g("ActualMinorInterval"); } get actualIntervalChangeRef() { return this.et; } set actualIntervalChangeRef(a) { this.et = a; this.g("ActualIntervalChangeRef"); } get actualMinorIntervalChangeRef() { return this.eu; } set actualMinorIntervalChangeRef(a) { this.eu = a; this.g("ActualMinorIntervalChangeRef"); } } CategoryDateTimeXAxisDescription.$t = /*@__PURE__*/ markType(CategoryDateTimeXAxisDescription, 'CategoryDateTimeXAxisDescription', TimeAxisBaseDescription.$); return CategoryDateTimeXAxisDescription; })();