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