UNPKG

igniteui-react-core

Version:
122 lines (121 loc) 4.1 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.gk = false; _this.gw = null; _this.go = 0; _this.gm = 0; _this.gp = 0; _this.gn = 0; _this.gu = null; _this.gv = null; return _this; } CategoryDateTimeXAxisDescription.prototype.get_type = function () { return "CategoryDateTimeXAxis"; }; Object.defineProperty(CategoryDateTimeXAxisDescription.prototype, "unevenlySpacedLabels", { get: function () { return this.gk; }, set: function (a) { this.gk = a; this.j("UnevenlySpacedLabels"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryDateTimeXAxisDescription.prototype, "displayType", { get: function () { return this.gw; }, set: function (a) { this.gw = a; this.j("DisplayType"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryDateTimeXAxisDescription.prototype, "interval", { get: function () { return this.go; }, set: function (a) { this.go = a; this.j("Interval"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryDateTimeXAxisDescription.prototype, "actualInterval", { get: function () { return this.gm; }, set: function (a) { this.gm = a; this.j("ActualInterval"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryDateTimeXAxisDescription.prototype, "minorInterval", { get: function () { return this.gp; }, set: function (a) { this.gp = a; this.j("MinorInterval"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryDateTimeXAxisDescription.prototype, "actualMinorInterval", { get: function () { return this.gn; }, set: function (a) { this.gn = a; this.j("ActualMinorInterval"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryDateTimeXAxisDescription.prototype, "actualIntervalChangeRef", { get: function () { return this.gu; }, set: function (a) { this.gu = a; this.j("ActualIntervalChangeRef"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryDateTimeXAxisDescription.prototype, "actualMinorIntervalChangeRef", { get: function () { return this.gv; }, set: function (a) { this.gv = a; this.j("ActualMinorIntervalChangeRef"); }, enumerable: false, configurable: true }); CategoryDateTimeXAxisDescription.$t = markType(CategoryDateTimeXAxisDescription, 'CategoryDateTimeXAxisDescription', TimeAxisBaseDescription.$); return CategoryDateTimeXAxisDescription; }(TimeAxisBaseDescription)); export { CategoryDateTimeXAxisDescription };