igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
98 lines (97 loc) • 3.43 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.dx = 0;
_this.dv = 0;
_this.dt = 0;
_this.dw = 0;
_this.du = 0;
_this.d3 = null;
return _this;
}
CategoryAngleAxisDescription.prototype.get_type = function () {
return "CategoryAngleAxis";
};
Object.defineProperty(CategoryAngleAxisDescription.prototype, "startAngleOffset", {
get: function () {
return this.dx;
},
set: function (a) {
this.dx = a;
this.e("StartAngleOffset");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryAngleAxisDescription.prototype, "interval", {
get: function () {
return this.dv;
},
set: function (a) {
this.dv = a;
this.e("Interval");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryAngleAxisDescription.prototype, "actualInterval", {
get: function () {
return this.dt;
},
set: function (a) {
this.dt = a;
this.e("ActualInterval");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryAngleAxisDescription.prototype, "minorInterval", {
get: function () {
return this.dw;
},
set: function (a) {
this.dw = a;
this.e("MinorInterval");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryAngleAxisDescription.prototype, "actualMinorInterval", {
get: function () {
return this.du;
},
set: function (a) {
this.du = a;
this.e("ActualMinorInterval");
},
enumerable: false,
configurable: true
});
Object.defineProperty(CategoryAngleAxisDescription.prototype, "actualIntervalChangeRef", {
get: function () {
return this.d3;
},
set: function (a) {
this.d3 = a;
this.e("ActualIntervalChangeRef");
},
enumerable: false,
configurable: true
});
CategoryAngleAxisDescription.$t = markType(CategoryAngleAxisDescription, 'CategoryAngleAxisDescription', CategoryAxisBaseDescription.$);
return CategoryAngleAxisDescription;
}(CategoryAxisBaseDescription));
export { CategoryAngleAxisDescription };