UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

122 lines (121 loc) 4.14 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 { __extends } from "tslib"; import { CategoryAxisBaseDescription } from "./CategoryAxisBaseDescription"; import { markType } from "./type"; /** * @hidden */ var TimeAxisBaseDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(TimeAxisBaseDescription, _super); function TimeAxisBaseDescription() { var _this = _super.call(this) || this; _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; return _this; } TimeAxisBaseDescription.prototype.get_type = function () { return "TimeAxisBase"; }; Object.defineProperty(TimeAxisBaseDescription.prototype, "dateTimeMemberPath", { get: function () { return this.ge; }, set: function (a) { this.ge = a; this.j("DateTimeMemberPath"); }, enumerable: false, configurable: true }); Object.defineProperty(TimeAxisBaseDescription.prototype, "isDataPreSorted", { get: function () { return this.f2; }, set: function (a) { this.f2 = a; this.j("IsDataPreSorted"); }, enumerable: false, configurable: true }); Object.defineProperty(TimeAxisBaseDescription.prototype, "actualMinimumValue", { get: function () { return this.f5; }, set: function (a) { this.f5 = a; this.j("ActualMinimumValue"); }, enumerable: false, configurable: true }); Object.defineProperty(TimeAxisBaseDescription.prototype, "actualMaximumValue", { get: function () { return this.f4; }, set: function (a) { this.f4 = a; this.j("ActualMaximumValue"); }, enumerable: false, configurable: true }); Object.defineProperty(TimeAxisBaseDescription.prototype, "minimumValue", { get: function () { return this.f7; }, set: function (a) { this.f7 = a; this.j("MinimumValue"); }, enumerable: false, configurable: true }); Object.defineProperty(TimeAxisBaseDescription.prototype, "maximumValue", { get: function () { return this.f6; }, set: function (a) { this.f6 = a; this.j("MaximumValue"); }, enumerable: false, configurable: true }); Object.defineProperty(TimeAxisBaseDescription.prototype, "actualMinimumValueChangeRef", { get: function () { return this.gd; }, set: function (a) { this.gd = a; this.j("ActualMinimumValueChangeRef"); }, enumerable: false, configurable: true }); Object.defineProperty(TimeAxisBaseDescription.prototype, "actualMaximumValueChangeRef", { get: function () { return this.gc; }, set: function (a) { this.gc = a; this.j("ActualMaximumValueChangeRef"); }, enumerable: false, configurable: true }); TimeAxisBaseDescription.$t = markType(TimeAxisBaseDescription, 'TimeAxisBaseDescription', CategoryAxisBaseDescription.$); return TimeAxisBaseDescription; }(CategoryAxisBaseDescription)); export { TimeAxisBaseDescription };