UNPKG

igniteui-react-core

Version:
56 lines (55 loc) 1.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 TimeXAxisDescription = /*@__PURE__*/ (() => { class TimeXAxisDescription extends TimeAxisBaseDescription { get_type() { return "TimeXAxis"; } constructor() { super(); this.gk = null; this.gq = null; this.gm = null; this.gl = null; } get breaks() { return this.gk; } set breaks(a) { this.gk = a; this.j("Breaks"); } get labellingMode() { return this.gq; } set labellingMode(a) { this.gq = a; this.j("LabellingMode"); } get labelFormats() { return this.gm; } set labelFormats(a) { this.gm = a; this.j("LabelFormats"); } get intervals() { return this.gl; } set intervals(a) { this.gl = a; this.j("Intervals"); } } TimeXAxisDescription.$t = /*@__PURE__*/ markType(TimeXAxisDescription, 'TimeXAxisDescription', TimeAxisBaseDescription.$); return TimeXAxisDescription; })();