igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
182 lines (181 loc) • 5.9 kB
JavaScript
/*
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.f4 = 0;
_this.f5 = 0;
_this.f8 = 0;
_this.f9 = 0;
_this.ga = 0;
_this.gb = 0;
_this.gc = 0;
_this.f6 = 0;
_this.f2 = 0;
_this.f7 = 0;
_this.f3 = 0;
_this.go = null;
_this.gp = null;
return _this;
}
CategoryXAxisDescription.prototype.get_type = function () {
return "CategoryXAxis";
};
Object.defineProperty(CategoryXAxisDescription.prototype, "companionAxisInterval", {
get: function () {
return this.f4;
},
set: function (a) {
this.f4 = a;
this.j("CompanionAxisInterval");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryXAxisDescription.prototype, "companionAxisMinorInterval", {
get: function () {
return this.f5;
},
set: function (a) {
this.f5 = a;
this.j("CompanionAxisMinorInterval");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryXAxisDescription.prototype, "zoomMaximumCategoryRange", {
get: function () {
return this.f8;
},
set: function (a) {
this.f8 = a;
this.j("ZoomMaximumCategoryRange");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryXAxisDescription.prototype, "zoomMaximumItemSpan", {
get: function () {
return this.f9;
},
set: function (a) {
this.f9 = a;
this.j("ZoomMaximumItemSpan");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryXAxisDescription.prototype, "zoomToCategoryRange", {
get: function () {
return this.ga;
},
set: function (a) {
this.ga = a;
this.j("ZoomToCategoryRange");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryXAxisDescription.prototype, "zoomToCategoryStart", {
get: function () {
return this.gb;
},
set: function (a) {
this.gb = a;
this.j("ZoomToCategoryStart");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryXAxisDescription.prototype, "zoomToItemSpan", {
get: function () {
return this.gc;
},
set: function (a) {
this.gc = a;
this.j("ZoomToItemSpan");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryXAxisDescription.prototype, "interval", {
get: function () {
return this.f6;
},
set: function (a) {
this.f6 = a;
this.j("Interval");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryXAxisDescription.prototype, "actualInterval", {
get: function () {
return this.f2;
},
set: function (a) {
this.f2 = a;
this.j("ActualInterval");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryXAxisDescription.prototype, "minorInterval", {
get: function () {
return this.f7;
},
set: function (a) {
this.f7 = a;
this.j("MinorInterval");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryXAxisDescription.prototype, "actualMinorInterval", {
get: function () {
return this.f3;
},
set: function (a) {
this.f3 = a;
this.j("ActualMinorInterval");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryXAxisDescription.prototype, "actualIntervalChangeRef", {
get: function () {
return this.go;
},
set: function (a) {
this.go = a;
this.j("ActualIntervalChangeRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryXAxisDescription.prototype, "actualMinorIntervalChangeRef", {
get: function () {
return this.gp;
},
set: function (a) {
this.gp = a;
this.j("ActualMinorIntervalChangeRef");
},
enumerable: false,
configurable: true
});
CategoryXAxisDescription.$t = markType(CategoryXAxisDescription, 'CategoryXAxisDescription', CategoryAxisBaseDescription.$);
return CategoryXAxisDescription;
}(CategoryAxisBaseDescription));
export { CategoryXAxisDescription };