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.gk = false; this.gw = null; this.go = 0; this.gm = 0; this.gp = 0; this.gn = 0; this.gu = null; this.gv = null; } get unevenlySpacedLabels() { return this.gk; } set unevenlySpacedLabels(a) { this.gk = a; this.j("UnevenlySpacedLabels"); } get displayType() { return this.gw; } set displayType(a) { this.gw = a; this.j("DisplayType"); } get interval() { return this.go; } set interval(a) { this.go = a; this.j("Interval"); } get actualInterval() { return this.gm; } set actualInterval(a) { this.gm = a; this.j("ActualInterval"); } get minorInterval() { return this.gp; } set minorInterval(a) { this.gp = a; this.j("MinorInterval"); } get actualMinorInterval() { return this.gn; } set actualMinorInterval(a) { this.gn = a; this.j("ActualMinorInterval"); } get actualIntervalChangeRef() { return this.gu; } set actualIntervalChangeRef(a) { this.gu = a; this.j("ActualIntervalChangeRef"); } get actualMinorIntervalChangeRef() { return this.gv; } set actualMinorIntervalChangeRef(a) { this.gv = a; this.j("ActualMinorIntervalChangeRef"); } } CategoryDateTimeXAxisDescription.$t = /*@__PURE__*/ markType(CategoryDateTimeXAxisDescription, 'CategoryDateTimeXAxisDescription', TimeAxisBaseDescription.$); return CategoryDateTimeXAxisDescription; })();