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.hr = null; this.g9 = null; this.ho = null; this.hn = null; this.g7 = null; this.hb = false; this.hc = false; this.hi = 0; this.hh = 0; this.hd = false; this.hp = null; this.hl = null; this.hq = null; this.hm = null; } get radiusMemberPath() { return this.hr; } set radiusMemberPath(a) { this.hr = a; this.g("RadiusMemberPath"); } get radiusScale() { return this.g9; } set radiusScale(a) { this.g9 = a; this.g("RadiusScale"); } get labelMemberPath() { return this.ho; } set labelMemberPath(a) { this.ho = a; this.g("LabelMemberPath"); } get fillMemberPath() { return this.hn; } set fillMemberPath(a) { this.hn = a; this.g("FillMemberPath"); } get fillScale() { return this.g7; } set fillScale(a) { this.g7 = a; this.g("FillScale"); } get fillScaleUseGlobalValues() { return this.hb; } set fillScaleUseGlobalValues(a) { this.hb = a; this.g("FillScaleUseGlobalValues"); } get markerOutlineUsesFillScale() { return this.hc; } set markerOutlineUsesFillScale(a) { this.hc = a; this.g("MarkerOutlineUsesFillScale"); } get markerOutlineBrightness() { return this.hi; } set markerOutlineBrightness(a) { this.hi = a; this.g("MarkerOutlineBrightness"); } get markerBrushBrightness() { return this.hh; } set markerBrushBrightness(a) { this.hh = a; this.g("MarkerBrushBrightness"); } get radiusScaleUseGlobalValues() { return this.hd; } set radiusScaleUseGlobalValues(a) { this.hd = a; this.g("RadiusScaleUseGlobalValues"); } get radiusMemberAsLegendLabel() { return this.hp; } set radiusMemberAsLegendLabel(a) { this.hp = a; this.g("RadiusMemberAsLegendLabel"); } get fillMemberAsLegendLabel() { return this.hl; } set fillMemberAsLegendLabel(a) { this.hl = a; this.g("FillMemberAsLegendLabel"); } get radiusMemberAsLegendUnit() { return this.hq; } set radiusMemberAsLegendUnit(a) { this.hq = a; this.g("RadiusMemberAsLegendUnit"); } get fillMemberAsLegendUnit() { return this.hm; } set fillMemberAsLegendUnit(a) { this.hm = a; this.g("FillMemberAsLegendUnit"); } } BubbleSeriesDescription.$t = /*@__PURE__*/ markType(BubbleSeriesDescription, 'BubbleSeriesDescription', ScatterBaseDescription.$); return BubbleSeriesDescription; })();