UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

182 lines (181 loc) 5.9 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 CategoryYAxisDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(CategoryYAxisDescription, _super); function CategoryYAxisDescription() { var _this = _super.call(this) || this; _this.f6 = 0; _this.f2 = 0; _this.f7 = 0; _this.f3 = 0; _this.f4 = 0; _this.f5 = 0; _this.f8 = 0; _this.f9 = 0; _this.ga = 0; _this.gb = 0; _this.gc = 0; _this.go = null; _this.gp = null; return _this; } CategoryYAxisDescription.prototype.get_type = function () { return "CategoryYAxis"; }; Object.defineProperty(CategoryYAxisDescription.prototype, "interval", { get: function () { return this.f6; }, set: function (a) { this.f6 = a; this.j("Interval"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryYAxisDescription.prototype, "actualInterval", { get: function () { return this.f2; }, set: function (a) { this.f2 = a; this.j("ActualInterval"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryYAxisDescription.prototype, "minorInterval", { get: function () { return this.f7; }, set: function (a) { this.f7 = a; this.j("MinorInterval"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryYAxisDescription.prototype, "actualMinorInterval", { get: function () { return this.f3; }, set: function (a) { this.f3 = a; this.j("ActualMinorInterval"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryYAxisDescription.prototype, "companionAxisInterval", { get: function () { return this.f4; }, set: function (a) { this.f4 = a; this.j("CompanionAxisInterval"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryYAxisDescription.prototype, "companionAxisMinorInterval", { get: function () { return this.f5; }, set: function (a) { this.f5 = a; this.j("CompanionAxisMinorInterval"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryYAxisDescription.prototype, "zoomMaximumCategoryRange", { get: function () { return this.f8; }, set: function (a) { this.f8 = a; this.j("ZoomMaximumCategoryRange"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryYAxisDescription.prototype, "zoomMaximumItemSpan", { get: function () { return this.f9; }, set: function (a) { this.f9 = a; this.j("ZoomMaximumItemSpan"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryYAxisDescription.prototype, "zoomToCategoryRange", { get: function () { return this.ga; }, set: function (a) { this.ga = a; this.j("ZoomToCategoryRange"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryYAxisDescription.prototype, "zoomToCategoryStart", { get: function () { return this.gb; }, set: function (a) { this.gb = a; this.j("ZoomToCategoryStart"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryYAxisDescription.prototype, "zoomToItemSpan", { get: function () { return this.gc; }, set: function (a) { this.gc = a; this.j("ZoomToItemSpan"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryYAxisDescription.prototype, "actualIntervalChangeRef", { get: function () { return this.go; }, set: function (a) { this.go = a; this.j("ActualIntervalChangeRef"); }, enumerable: false, configurable: true }); Object.defineProperty(CategoryYAxisDescription.prototype, "actualMinorIntervalChangeRef", { get: function () { return this.gp; }, set: function (a) { this.gp = a; this.j("ActualMinorIntervalChangeRef"); }, enumerable: false, configurable: true }); CategoryYAxisDescription.$t = markType(CategoryYAxisDescription, 'CategoryYAxisDescription', CategoryAxisBaseDescription.$); return CategoryYAxisDescription; }(CategoryAxisBaseDescription)); export { CategoryYAxisDescription };