UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

122 lines (121 loc) 4.22 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 { TimeAxisBaseDescription } from "./TimeAxisBaseDescription"; import { markType } from "./type"; /** * @hidden */ var CategoryDateTimeXAxisDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(CategoryDateTimeXAxisDescription, _super); function CategoryDateTimeXAxisDescription() { var _this = _super.call(this) || this; _this.gi = false; _this.gu = null; _this.gm = 0; _this.gk = 0; _this.gn = 0; _this.gl = 0; _this.gs = null; _this.gt = null; return _this; } CategoryDateTimeXAxisDescription.prototype.get_type = function () { return "CategoryDateTimeXAxis"; }; Object.defineProperty(CategoryDateTimeXAxisDescription.prototype, "unevenlySpacedLabels", { get: function () { return this.gi; }, set: function (a) { this.gi = a; this.j("UnevenlySpacedLabels"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryDateTimeXAxisDescription.prototype, "displayType", { get: function () { return this.gu; }, set: function (a) { this.gu = a; this.j("DisplayType"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryDateTimeXAxisDescription.prototype, "interval", { get: function () { return this.gm; }, set: function (a) { this.gm = a; this.j("Interval"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryDateTimeXAxisDescription.prototype, "actualInterval", { get: function () { return this.gk; }, set: function (a) { this.gk = a; this.j("ActualInterval"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryDateTimeXAxisDescription.prototype, "minorInterval", { get: function () { return this.gn; }, set: function (a) { this.gn = a; this.j("MinorInterval"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryDateTimeXAxisDescription.prototype, "actualMinorInterval", { get: function () { return this.gl; }, set: function (a) { this.gl = a; this.j("ActualMinorInterval"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryDateTimeXAxisDescription.prototype, "actualIntervalChangeRef", { get: function () { return this.gs; }, set: function (a) { this.gs = a; this.j("ActualIntervalChangeRef"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryDateTimeXAxisDescription.prototype, "actualMinorIntervalChangeRef", { get: function () { return this.gt; }, set: function (a) { this.gt = a; this.j("ActualMinorIntervalChangeRef"); }, enumerable: false, configurable: true }); CategoryDateTimeXAxisDescription.$t = markType(CategoryDateTimeXAxisDescription, 'CategoryDateTimeXAxisDescription', TimeAxisBaseDescription.$); return CategoryDateTimeXAxisDescription; }(TimeAxisBaseDescription)); export { CategoryDateTimeXAxisDescription };