igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
74 lines (73 loc) • 2.73 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 { NumericAxisBaseDescription } from "./NumericAxisBaseDescription";
import { markType } from "./type";
/**
* @hidden
*/
var NumericAngleAxisDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(NumericAngleAxisDescription, _super);
function NumericAngleAxisDescription() {
var _this = _super.call(this) || this;
_this.hi = 0;
_this.hm = null;
_this.hj = 0;
_this.hn = null;
return _this;
}
NumericAngleAxisDescription.prototype.get_type = function () {
return "NumericAngleAxis";
};
Object.defineProperty(NumericAngleAxisDescription.prototype, "companionAxisStartAngleOffset", {
get: function () {
return this.hi;
},
set: function (a) {
this.hi = a;
this.j("CompanionAxisStartAngleOffset");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericAngleAxisDescription.prototype, "companionAxisLabelMode", {
get: function () {
return this.hm;
},
set: function (a) {
this.hm = a;
this.j("CompanionAxisLabelMode");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericAngleAxisDescription.prototype, "startAngleOffset", {
get: function () {
return this.hj;
},
set: function (a) {
this.hj = a;
this.j("StartAngleOffset");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericAngleAxisDescription.prototype, "labelMode", {
get: function () {
return this.hn;
},
set: function (a) {
this.hn = a;
this.j("LabelMode");
},
enumerable: false,
configurable: true
});
NumericAngleAxisDescription.$t = markType(NumericAngleAxisDescription, 'NumericAngleAxisDescription', NumericAxisBaseDescription.$);
return NumericAngleAxisDescription;
}(NumericAxisBaseDescription));
export { NumericAngleAxisDescription };