UNPKG

igniteui-react-core

Version:
136 lines (135 loc) 4.12 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 { ScatterBaseDescription } from "./ScatterBaseDescription"; import { markType } from "./type"; /** * @hidden */ export let BubbleSeriesDescription = /*@__PURE__*/ (() => { class BubbleSeriesDescription extends ScatterBaseDescription { get_type() { return "BubbleSeries"; } constructor() { super(); this.h0 = null; this.hi = null; this.hx = null; this.hw = null; this.hg = null; this.hk = false; this.hl = false; this.hr = 0; this.hq = 0; this.hm = false; this.hy = null; this.hu = null; this.hz = null; this.hv = null; } get radiusMemberPath() { return this.h0; } set radiusMemberPath(a) { this.h0 = a; this.j("RadiusMemberPath"); } get radiusScale() { return this.hi; } set radiusScale(a) { this.hi = a; this.j("RadiusScale"); } get labelMemberPath() { return this.hx; } set labelMemberPath(a) { this.hx = a; this.j("LabelMemberPath"); } get fillMemberPath() { return this.hw; } set fillMemberPath(a) { this.hw = a; this.j("FillMemberPath"); } get fillScale() { return this.hg; } set fillScale(a) { this.hg = a; this.j("FillScale"); } get fillScaleUseGlobalValues() { return this.hk; } set fillScaleUseGlobalValues(a) { this.hk = a; this.j("FillScaleUseGlobalValues"); } get markerOutlineUsesFillScale() { return this.hl; } set markerOutlineUsesFillScale(a) { this.hl = a; this.j("MarkerOutlineUsesFillScale"); } get markerOutlineBrightness() { return this.hr; } set markerOutlineBrightness(a) { this.hr = a; this.j("MarkerOutlineBrightness"); } get markerBrushBrightness() { return this.hq; } set markerBrushBrightness(a) { this.hq = a; this.j("MarkerBrushBrightness"); } get radiusScaleUseGlobalValues() { return this.hm; } set radiusScaleUseGlobalValues(a) { this.hm = a; this.j("RadiusScaleUseGlobalValues"); } get radiusMemberAsLegendLabel() { return this.hy; } set radiusMemberAsLegendLabel(a) { this.hy = a; this.j("RadiusMemberAsLegendLabel"); } get fillMemberAsLegendLabel() { return this.hu; } set fillMemberAsLegendLabel(a) { this.hu = a; this.j("FillMemberAsLegendLabel"); } get radiusMemberAsLegendUnit() { return this.hz; } set radiusMemberAsLegendUnit(a) { this.hz = a; this.j("RadiusMemberAsLegendUnit"); } get fillMemberAsLegendUnit() { return this.hv; } set fillMemberAsLegendUnit(a) { this.hv = a; this.j("FillMemberAsLegendUnit"); } } BubbleSeriesDescription.$t = /*@__PURE__*/ markType(BubbleSeriesDescription, 'BubbleSeriesDescription', ScatterBaseDescription.$); return BubbleSeriesDescription; })();