UNPKG

igniteui-react-core

Version:
86 lines (85 loc) 2.97 kB
/* 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.h8 = 0; _this.h9 = 0; _this.id = null; _this.ic = null; _this.h6 = false; return _this; } RadialPieSeriesDescription.prototype.get_type = function () { return "RadialPieSeries"; }; Object.defineProperty(RadialPieSeriesDescription.prototype, "radiusX", { get: function () { return this.h8; }, set: function (a) { this.h8 = a; this.j("RadiusX"); }, enumerable: false, configurable: true }); Object.defineProperty(RadialPieSeriesDescription.prototype, "radiusY", { get: function () { return this.h9; }, set: function (a) { this.h9 = a; this.j("RadiusY"); }, enumerable: false, configurable: true }); Object.defineProperty(RadialPieSeriesDescription.prototype, "legendLabelMemberPath", { get: function () { return this.id; }, set: function (a) { this.id = a; this.j("LegendLabelMemberPath"); }, enumerable: false, configurable: true }); Object.defineProperty(RadialPieSeriesDescription.prototype, "legendEmptyValuesMode", { get: function () { return this.ic; }, set: function (a) { this.ic = a; this.j("LegendEmptyValuesMode"); }, enumerable: false, configurable: true }); Object.defineProperty(RadialPieSeriesDescription.prototype, "useInsetOutlines", { get: function () { return this.h6; }, set: function (a) { this.h6 = a; this.j("UseInsetOutlines"); }, enumerable: false, configurable: true }); RadialPieSeriesDescription.$t = markType(RadialPieSeriesDescription, 'RadialPieSeriesDescription', AnchoredRadialSeriesDescription.$); return RadialPieSeriesDescription; }(AnchoredRadialSeriesDescription)); export { RadialPieSeriesDescription };