UNPKG

igniteui-react-core

Version:
64 lines (63 loc) 2.11 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 { AnchoredRadialSeriesDescription } from "./AnchoredRadialSeriesDescription"; import { markType } from "./type"; /** * @hidden */ export let RadialPieSeriesDescription = /*@__PURE__*/ (() => { class RadialPieSeriesDescription extends AnchoredRadialSeriesDescription { get_type() { return "RadialPieSeries"; } constructor() { super(); this.h8 = 0; this.h9 = 0; this.id = null; this.ic = null; this.h6 = false; } get radiusX() { return this.h8; } set radiusX(a) { this.h8 = a; this.j("RadiusX"); } get radiusY() { return this.h9; } set radiusY(a) { this.h9 = a; this.j("RadiusY"); } get legendLabelMemberPath() { return this.id; } set legendLabelMemberPath(a) { this.id = a; this.j("LegendLabelMemberPath"); } get legendEmptyValuesMode() { return this.ic; } set legendEmptyValuesMode(a) { this.ic = a; this.j("LegendEmptyValuesMode"); } get useInsetOutlines() { return this.h6; } set useInsetOutlines(a) { this.h6 = a; this.j("UseInsetOutlines"); } } RadialPieSeriesDescription.$t = /*@__PURE__*/ markType(RadialPieSeriesDescription, 'RadialPieSeriesDescription', AnchoredRadialSeriesDescription.$); return RadialPieSeriesDescription; })();