UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

88 lines (87 loc) 2.88 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 { constructor() { super(); this.ge = null; this.f2 = false; this.f5 = new Date(); this.f4 = new Date(); this.f7 = new Date(); this.f6 = new Date(); this.gd = null; this.gc = null; } get_type() { return "TimeAxisBase"; } get dateTimeMemberPath() { return this.ge; } set dateTimeMemberPath(a) { this.ge = a; this.j("DateTimeMemberPath"); } get isDataPreSorted() { return this.f2; } set isDataPreSorted(a) { this.f2 = a; this.j("IsDataPreSorted"); } get actualMinimumValue() { return this.f5; } set actualMinimumValue(a) { this.f5 = a; this.j("ActualMinimumValue"); } get actualMaximumValue() { return this.f4; } set actualMaximumValue(a) { this.f4 = a; this.j("ActualMaximumValue"); } get minimumValue() { return this.f7; } set minimumValue(a) { this.f7 = a; this.j("MinimumValue"); } get maximumValue() { return this.f6; } set maximumValue(a) { this.f6 = a; this.j("MaximumValue"); } get actualMinimumValueChangeRef() { return this.gd; } set actualMinimumValueChangeRef(a) { this.gd = a; this.j("ActualMinimumValueChangeRef"); } get actualMaximumValueChangeRef() { return this.gc; } set actualMaximumValueChangeRef(a) { this.gc = a; this.j("ActualMaximumValueChangeRef"); } } TimeAxisBaseDescription.$t = markType(TimeAxisBaseDescription, 'TimeAxisBaseDescription', CategoryAxisBaseDescription.$); return TimeAxisBaseDescription; })();