UNPKG

igniteui-react-core

Version:
88 lines (87 loc) 2.81 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 { CategoryAxisBaseDescription } from "./CategoryAxisBaseDescription"; import { markType } from "./type"; /** * @hidden */ export let TimeAxisBaseDescription = /*@__PURE__*/ (() => { class TimeAxisBaseDescription extends CategoryAxisBaseDescription { get_type() { return "TimeAxisBase"; } constructor() { super(); this.gg = null; this.f4 = false; this.f7 = new Date(); this.f6 = new Date(); this.f9 = new Date(); this.f8 = new Date(); this.gf = null; this.ge = null; } get dateTimeMemberPath() { return this.gg; } set dateTimeMemberPath(a) { this.gg = a; this.j("DateTimeMemberPath"); } get isDataPreSorted() { return this.f4; } set isDataPreSorted(a) { this.f4 = a; this.j("IsDataPreSorted"); } get actualMinimumValue() { return this.f7; } set actualMinimumValue(a) { this.f7 = a; this.j("ActualMinimumValue"); } get actualMaximumValue() { return this.f6; } set actualMaximumValue(a) { this.f6 = a; this.j("ActualMaximumValue"); } get minimumValue() { return this.f9; } set minimumValue(a) { this.f9 = a; this.j("MinimumValue"); } get maximumValue() { return this.f8; } set maximumValue(a) { this.f8 = a; this.j("MaximumValue"); } get actualMinimumValueChangeRef() { return this.gf; } set actualMinimumValueChangeRef(a) { this.gf = a; this.j("ActualMinimumValueChangeRef"); } get actualMaximumValueChangeRef() { return this.ge; } set actualMaximumValueChangeRef(a) { this.ge = a; this.j("ActualMaximumValueChangeRef"); } } TimeAxisBaseDescription.$t = /*@__PURE__*/ markType(TimeAxisBaseDescription, 'TimeAxisBaseDescription', CategoryAxisBaseDescription.$); return TimeAxisBaseDescription; })();