UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

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