igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
110 lines (109 loc) • 3.75 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 { MarkerSeriesDescription } from "./MarkerSeriesDescription";
import { markType } from "./type";
/**
* @hidden
*/
var RadialBaseDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(RadialBaseDescription, _super);
function RadialBaseDescription() {
var _this = _super.call(this) || this;
_this.dr = false;
_this.dq = false;
_this.dv = null;
_this.dy = null;
_this.dp = false;
_this.dx = null;
_this.dw = null;
return _this;
}
RadialBaseDescription.prototype.get_type = function () {
return "RadialBase";
};
Object.defineProperty(RadialBaseDescription.prototype, "isCustomRadialStyleAllowed", {
get: function () {
return this.dr;
},
set: function (a) {
this.dr = a;
this.e("IsCustomRadialStyleAllowed");
},
enumerable: false,
configurable: true
});
Object.defineProperty(RadialBaseDescription.prototype, "isCustomRadialMarkerStyleAllowed", {
get: function () {
return this.dq;
},
set: function (a) {
this.dq = a;
this.e("IsCustomRadialMarkerStyleAllowed");
},
enumerable: false,
configurable: true
});
Object.defineProperty(RadialBaseDescription.prototype, "angleAxisRef", {
get: function () {
return this.dv;
},
set: function (a) {
this.dv = a;
this.e("AngleAxisRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(RadialBaseDescription.prototype, "valueAxisRef", {
get: function () {
return this.dy;
},
set: function (a) {
this.dy = a;
this.e("ValueAxisRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(RadialBaseDescription.prototype, "clipSeriesToBounds", {
get: function () {
return this.dp;
},
set: function (a) {
this.dp = a;
this.e("ClipSeriesToBounds");
},
enumerable: false,
configurable: true
});
Object.defineProperty(RadialBaseDescription.prototype, "assigningRadialStyleRef", {
get: function () {
return this.dx;
},
set: function (a) {
this.dx = a;
this.e("AssigningRadialStyleRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(RadialBaseDescription.prototype, "assigningRadialMarkerStyleRef", {
get: function () {
return this.dw;
},
set: function (a) {
this.dw = a;
this.e("AssigningRadialMarkerStyleRef");
},
enumerable: false,
configurable: true
});
RadialBaseDescription.$t = markType(RadialBaseDescription, 'RadialBaseDescription', MarkerSeriesDescription.$);
return RadialBaseDescription;
}(MarkerSeriesDescription));
export { RadialBaseDescription };