igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
136 lines (135 loc) • 4.24 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 {
constructor() {
super();
this.hy = null;
this.hg = null;
this.hv = null;
this.hu = null;
this.he = null;
this.hi = false;
this.hj = false;
this.hp = 0;
this.ho = 0;
this.hk = false;
this.hw = null;
this.hs = null;
this.hx = null;
this.ht = null;
}
get_type() {
return "BubbleSeries";
}
get radiusMemberPath() {
return this.hy;
}
set radiusMemberPath(a) {
this.hy = a;
this.j("RadiusMemberPath");
}
get radiusScale() {
return this.hg;
}
set radiusScale(a) {
this.hg = a;
this.j("RadiusScale");
}
get labelMemberPath() {
return this.hv;
}
set labelMemberPath(a) {
this.hv = a;
this.j("LabelMemberPath");
}
get fillMemberPath() {
return this.hu;
}
set fillMemberPath(a) {
this.hu = a;
this.j("FillMemberPath");
}
get fillScale() {
return this.he;
}
set fillScale(a) {
this.he = a;
this.j("FillScale");
}
get fillScaleUseGlobalValues() {
return this.hi;
}
set fillScaleUseGlobalValues(a) {
this.hi = a;
this.j("FillScaleUseGlobalValues");
}
get markerOutlineUsesFillScale() {
return this.hj;
}
set markerOutlineUsesFillScale(a) {
this.hj = a;
this.j("MarkerOutlineUsesFillScale");
}
get markerOutlineBrightness() {
return this.hp;
}
set markerOutlineBrightness(a) {
this.hp = a;
this.j("MarkerOutlineBrightness");
}
get markerBrushBrightness() {
return this.ho;
}
set markerBrushBrightness(a) {
this.ho = a;
this.j("MarkerBrushBrightness");
}
get radiusScaleUseGlobalValues() {
return this.hk;
}
set radiusScaleUseGlobalValues(a) {
this.hk = a;
this.j("RadiusScaleUseGlobalValues");
}
get radiusMemberAsLegendLabel() {
return this.hw;
}
set radiusMemberAsLegendLabel(a) {
this.hw = a;
this.j("RadiusMemberAsLegendLabel");
}
get fillMemberAsLegendLabel() {
return this.hs;
}
set fillMemberAsLegendLabel(a) {
this.hs = a;
this.j("FillMemberAsLegendLabel");
}
get radiusMemberAsLegendUnit() {
return this.hx;
}
set radiusMemberAsLegendUnit(a) {
this.hx = a;
this.j("RadiusMemberAsLegendUnit");
}
get fillMemberAsLegendUnit() {
return this.ht;
}
set fillMemberAsLegendUnit(a) {
this.ht = a;
this.j("FillMemberAsLegendUnit");
}
}
BubbleSeriesDescription.$t = markType(BubbleSeriesDescription, 'BubbleSeriesDescription', ScatterBaseDescription.$);
return BubbleSeriesDescription;
})();