igniteui-react-core
Version:
Ignite UI React Core.
50 lines (49 loc) • 1.94 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.ff = 0;
_this.fh = null;
return _this;
}
NumericAngleAxisDescription.prototype.get_type = function () {
return "NumericAngleAxis";
};
Object.defineProperty(NumericAngleAxisDescription.prototype, "startAngleOffset", {
get: function () {
return this.ff;
},
set: function (a) {
this.ff = a;
this.g("StartAngleOffset");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericAngleAxisDescription.prototype, "labelMode", {
get: function () {
return this.fh;
},
set: function (a) {
this.fh = a;
this.g("LabelMode");
},
enumerable: false,
configurable: true
});
NumericAngleAxisDescription.$t = markType(NumericAngleAxisDescription, 'NumericAngleAxisDescription', NumericAxisBaseDescription.$);
return NumericAngleAxisDescription;
}(NumericAxisBaseDescription));
export { NumericAngleAxisDescription };