igniteui-react-core
Version:
Ignite UI React Core.
74 lines (73 loc) • 2.63 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 { AnchoredRadialSeriesDescription } from "./AnchoredRadialSeriesDescription";
import { markType } from "./type";
/**
* @hidden
*/
var RadialPieSeriesDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(RadialPieSeriesDescription, _super);
function RadialPieSeriesDescription() {
var _this = _super.call(this) || this;
_this.hv = 0;
_this.hw = 0;
_this.h0 = null;
_this.hz = null;
return _this;
}
RadialPieSeriesDescription.prototype.get_type = function () {
return "RadialPieSeries";
};
Object.defineProperty(RadialPieSeriesDescription.prototype, "radiusX", {
get: function () {
return this.hv;
},
set: function (a) {
this.hv = a;
this.g("RadiusX");
},
enumerable: false,
configurable: true
});
Object.defineProperty(RadialPieSeriesDescription.prototype, "radiusY", {
get: function () {
return this.hw;
},
set: function (a) {
this.hw = a;
this.g("RadiusY");
},
enumerable: false,
configurable: true
});
Object.defineProperty(RadialPieSeriesDescription.prototype, "legendLabelMemberPath", {
get: function () {
return this.h0;
},
set: function (a) {
this.h0 = a;
this.g("LegendLabelMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(RadialPieSeriesDescription.prototype, "legendEmptyValuesMode", {
get: function () {
return this.hz;
},
set: function (a) {
this.hz = a;
this.g("LegendEmptyValuesMode");
},
enumerable: false,
configurable: true
});
RadialPieSeriesDescription.$t = markType(RadialPieSeriesDescription, 'RadialPieSeriesDescription', AnchoredRadialSeriesDescription.$);
return RadialPieSeriesDescription;
}(AnchoredRadialSeriesDescription));
export { RadialPieSeriesDescription };