UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

136 lines (135 loc) 4.24 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 { constructor() { super(); this.fj = null; this.e1 = null; this.fg = null; this.ff = null; this.ez = null; this.e3 = false; this.e4 = false; this.fa = 0; this.e9 = 0; this.e5 = false; this.fh = null; this.fd = null; this.fi = null; this.fe = null; } get_type() { return "BubbleSeries"; } get radiusMemberPath() { return this.fj; } set radiusMemberPath(a) { this.fj = a; this.e("RadiusMemberPath"); } get radiusScale() { return this.e1; } set radiusScale(a) { this.e1 = a; this.e("RadiusScale"); } get labelMemberPath() { return this.fg; } set labelMemberPath(a) { this.fg = a; this.e("LabelMemberPath"); } get fillMemberPath() { return this.ff; } set fillMemberPath(a) { this.ff = a; this.e("FillMemberPath"); } get fillScale() { return this.ez; } set fillScale(a) { this.ez = a; this.e("FillScale"); } get fillScaleUseGlobalValues() { return this.e3; } set fillScaleUseGlobalValues(a) { this.e3 = a; this.e("FillScaleUseGlobalValues"); } get markerOutlineUsesFillScale() { return this.e4; } set markerOutlineUsesFillScale(a) { this.e4 = a; this.e("MarkerOutlineUsesFillScale"); } get markerOutlineBrightness() { return this.fa; } set markerOutlineBrightness(a) { this.fa = a; this.e("MarkerOutlineBrightness"); } get markerBrushBrightness() { return this.e9; } set markerBrushBrightness(a) { this.e9 = a; this.e("MarkerBrushBrightness"); } get radiusScaleUseGlobalValues() { return this.e5; } set radiusScaleUseGlobalValues(a) { this.e5 = a; this.e("RadiusScaleUseGlobalValues"); } get radiusMemberAsLegendLabel() { return this.fh; } set radiusMemberAsLegendLabel(a) { this.fh = a; this.e("RadiusMemberAsLegendLabel"); } get fillMemberAsLegendLabel() { return this.fd; } set fillMemberAsLegendLabel(a) { this.fd = a; this.e("FillMemberAsLegendLabel"); } get radiusMemberAsLegendUnit() { return this.fi; } set radiusMemberAsLegendUnit(a) { this.fi = a; this.e("RadiusMemberAsLegendUnit"); } get fillMemberAsLegendUnit() { return this.fe; } set fillMemberAsLegendUnit(a) { this.fe = a; this.e("FillMemberAsLegendUnit"); } } BubbleSeriesDescription.$t = markType(BubbleSeriesDescription, 'BubbleSeriesDescription', ScatterBaseDescription.$); return BubbleSeriesDescription; })();