UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

56 lines (55 loc) 1.83 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 { constructor() { super(); this.er = null; this.ex = null; this.et = null; this.es = null; } get_type() { return "TimeXAxis"; } get breaks() { return this.er; } set breaks(a) { this.er = a; this.g("Breaks"); } get labellingMode() { return this.ex; } set labellingMode(a) { this.ex = a; this.g("LabellingMode"); } get labelFormats() { return this.et; } set labelFormats(a) { this.et = a; this.g("LabelFormats"); } get intervals() { return this.es; } set intervals(a) { this.es = a; this.g("Intervals"); } } TimeXAxisDescription.$t = markType(TimeXAxisDescription, 'TimeXAxisDescription', TimeAxisBaseDescription.$); return TimeXAxisDescription; })();