igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
110 lines (109 loc) • 3.77 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 CategoryAngleAxisDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(CategoryAngleAxisDescription, _super);
function CategoryAngleAxisDescription() {
var _this = _super.call(this) || this;
_this.ef = 0;
_this.em = null;
_this.ed = 0;
_this.eb = 0;
_this.ee = 0;
_this.ec = 0;
_this.el = null;
return _this;
}
CategoryAngleAxisDescription.prototype.get_type = function () {
return "CategoryAngleAxis";
};
Object.defineProperty(CategoryAngleAxisDescription.prototype, "startAngleOffset", {
get: function () {
return this.ef;
},
set: function (a) {
this.ef = a;
this.g("StartAngleOffset");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryAngleAxisDescription.prototype, "labelMode", {
get: function () {
return this.em;
},
set: function (a) {
this.em = a;
this.g("LabelMode");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryAngleAxisDescription.prototype, "interval", {
get: function () {
return this.ed;
},
set: function (a) {
this.ed = a;
this.g("Interval");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryAngleAxisDescription.prototype, "actualInterval", {
get: function () {
return this.eb;
},
set: function (a) {
this.eb = a;
this.g("ActualInterval");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryAngleAxisDescription.prototype, "minorInterval", {
get: function () {
return this.ee;
},
set: function (a) {
this.ee = a;
this.g("MinorInterval");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryAngleAxisDescription.prototype, "actualMinorInterval", {
get: function () {
return this.ec;
},
set: function (a) {
this.ec = a;
this.g("ActualMinorInterval");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryAngleAxisDescription.prototype, "actualIntervalChangeRef", {
get: function () {
return this.el;
},
set: function (a) {
this.el = a;
this.g("ActualIntervalChangeRef");
},
enumerable: false,
configurable: true
});
CategoryAngleAxisDescription.$t = markType(CategoryAngleAxisDescription, 'CategoryAngleAxisDescription', CategoryAxisBaseDescription.$);
return CategoryAngleAxisDescription;
}(CategoryAxisBaseDescription));
export { CategoryAngleAxisDescription };