UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

158 lines (157 loc) 5.17 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 CategoryXAxisDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(CategoryXAxisDescription, _super); function CategoryXAxisDescription() { var _this = _super.call(this) || this; _this.ef = 0; _this.eg = 0; _this.eh = 0; _this.ei = 0; _this.ej = 0; _this.ed = 0; _this.eb = 0; _this.ee = 0; _this.ec = 0; _this.et = null; _this.eu = null; return _this; } CategoryXAxisDescription.prototype.get_type = function () { return "CategoryXAxis"; }; Object.defineProperty(CategoryXAxisDescription.prototype, "zoomMaximumCategoryRange", { get: function () { return this.ef; }, set: function (a) { this.ef = a; this.g("ZoomMaximumCategoryRange"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryXAxisDescription.prototype, "zoomMaximumItemSpan", { get: function () { return this.eg; }, set: function (a) { this.eg = a; this.g("ZoomMaximumItemSpan"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryXAxisDescription.prototype, "zoomToCategoryRange", { get: function () { return this.eh; }, set: function (a) { this.eh = a; this.g("ZoomToCategoryRange"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryXAxisDescription.prototype, "zoomToCategoryStart", { get: function () { return this.ei; }, set: function (a) { this.ei = a; this.g("ZoomToCategoryStart"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryXAxisDescription.prototype, "zoomToItemSpan", { get: function () { return this.ej; }, set: function (a) { this.ej = a; this.g("ZoomToItemSpan"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryXAxisDescription.prototype, "interval", { get: function () { return this.ed; }, set: function (a) { this.ed = a; this.g("Interval"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryXAxisDescription.prototype, "actualInterval", { get: function () { return this.eb; }, set: function (a) { this.eb = a; this.g("ActualInterval"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryXAxisDescription.prototype, "minorInterval", { get: function () { return this.ee; }, set: function (a) { this.ee = a; this.g("MinorInterval"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryXAxisDescription.prototype, "actualMinorInterval", { get: function () { return this.ec; }, set: function (a) { this.ec = a; this.g("ActualMinorInterval"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryXAxisDescription.prototype, "actualIntervalChangeRef", { get: function () { return this.et; }, set: function (a) { this.et = a; this.g("ActualIntervalChangeRef"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryXAxisDescription.prototype, "actualMinorIntervalChangeRef", { get: function () { return this.eu; }, set: function (a) { this.eu = a; this.g("ActualMinorIntervalChangeRef"); }, enumerable: false, configurable: true }); CategoryXAxisDescription.$t = markType(CategoryXAxisDescription, 'CategoryXAxisDescription', CategoryAxisBaseDescription.$); return CategoryXAxisDescription; }(CategoryAxisBaseDescription)); export { CategoryXAxisDescription };