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.er = false; this.e3 = null; this.ev = 0; this.et = 0; this.ew = 0; this.eu = 0; this.e1 = null; this.e2 = null; } get unevenlySpacedLabels() { return this.er; } set unevenlySpacedLabels(a) { this.er = a; this.g("UnevenlySpacedLabels"); } get displayType() { return this.e3; } set displayType(a) { this.e3 = a; this.g("DisplayType"); } get interval() { return this.ev; } set interval(a) { this.ev = a; this.g("Interval"); } get actualInterval() { return this.et; } set actualInterval(a) { this.et = a; this.g("ActualInterval"); } get minorInterval() { return this.ew; } set minorInterval(a) { this.ew = a; this.g("MinorInterval"); } get actualMinorInterval() { return this.eu; } set actualMinorInterval(a) { this.eu = a; this.g("ActualMinorInterval"); } get actualIntervalChangeRef() { return this.e1; } set actualIntervalChangeRef(a) { this.e1 = a; this.g("ActualIntervalChangeRef"); } get actualMinorIntervalChangeRef() { return this.e2; } set actualMinorIntervalChangeRef(a) { this.e2 = a; this.g("ActualMinorIntervalChangeRef"); } } CategoryDateTimeXAxisDescription.$t = /*@__PURE__*/ markType(CategoryDateTimeXAxisDescription, 'CategoryDateTimeXAxisDescription', TimeAxisBaseDescription.$); return CategoryDateTimeXAxisDescription; })();