igniteui-react-core
Version:
Ignite UI React Core.
136 lines (135 loc) • 4.12 kB
JavaScript
/*
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.ht = null;
this.hb = null;
this.hq = null;
this.hp = null;
this.g9 = null;
this.hd = false;
this.he = false;
this.hk = 0;
this.hj = 0;
this.hf = false;
this.hr = null;
this.hn = null;
this.hs = null;
this.ho = null;
}
get radiusMemberPath() {
return this.ht;
}
set radiusMemberPath(a) {
this.ht = a;
this.g("RadiusMemberPath");
}
get radiusScale() {
return this.hb;
}
set radiusScale(a) {
this.hb = a;
this.g("RadiusScale");
}
get labelMemberPath() {
return this.hq;
}
set labelMemberPath(a) {
this.hq = a;
this.g("LabelMemberPath");
}
get fillMemberPath() {
return this.hp;
}
set fillMemberPath(a) {
this.hp = a;
this.g("FillMemberPath");
}
get fillScale() {
return this.g9;
}
set fillScale(a) {
this.g9 = a;
this.g("FillScale");
}
get fillScaleUseGlobalValues() {
return this.hd;
}
set fillScaleUseGlobalValues(a) {
this.hd = a;
this.g("FillScaleUseGlobalValues");
}
get markerOutlineUsesFillScale() {
return this.he;
}
set markerOutlineUsesFillScale(a) {
this.he = a;
this.g("MarkerOutlineUsesFillScale");
}
get markerOutlineBrightness() {
return this.hk;
}
set markerOutlineBrightness(a) {
this.hk = a;
this.g("MarkerOutlineBrightness");
}
get markerBrushBrightness() {
return this.hj;
}
set markerBrushBrightness(a) {
this.hj = a;
this.g("MarkerBrushBrightness");
}
get radiusScaleUseGlobalValues() {
return this.hf;
}
set radiusScaleUseGlobalValues(a) {
this.hf = a;
this.g("RadiusScaleUseGlobalValues");
}
get radiusMemberAsLegendLabel() {
return this.hr;
}
set radiusMemberAsLegendLabel(a) {
this.hr = a;
this.g("RadiusMemberAsLegendLabel");
}
get fillMemberAsLegendLabel() {
return this.hn;
}
set fillMemberAsLegendLabel(a) {
this.hn = a;
this.g("FillMemberAsLegendLabel");
}
get radiusMemberAsLegendUnit() {
return this.hs;
}
set radiusMemberAsLegendUnit(a) {
this.hs = a;
this.g("RadiusMemberAsLegendUnit");
}
get fillMemberAsLegendUnit() {
return this.ho;
}
set fillMemberAsLegendUnit(a) {
this.ho = a;
this.g("FillMemberAsLegendUnit");
}
}
BubbleSeriesDescription.$t = /*@__PURE__*/ markType(BubbleSeriesDescription, 'BubbleSeriesDescription', ScatterBaseDescription.$);
return BubbleSeriesDescription;
})();