igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
168 lines (167 loc) • 5.38 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 { GeographicMarkerSeriesDescription } from "./GeographicMarkerSeriesDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let GeographicProportionalSymbolSeriesDescription = /*@__PURE__*/ (() => {
class GeographicProportionalSymbolSeriesDescription extends GeographicMarkerSeriesDescription {
constructor() {
super();
this.ek = null;
this.el = null;
this.em = null;
this.dx = null;
this.ej = null;
this.eh = null;
this.dv = null;
this.dz = false;
this.d2 = false;
this.ea = 0;
this.d9 = 0;
this.d3 = false;
this.d1 = false;
this.d0 = false;
this.ei = null;
this.ed = 0;
this.eg = null;
this.ef = null;
}
get_type() {
return "GeographicProportionalSymbolSeries";
}
get latitudeMemberPath() {
return this.ek;
}
set latitudeMemberPath(a) {
this.ek = a;
this.e("LatitudeMemberPath");
}
get longitudeMemberPath() {
return this.el;
}
set longitudeMemberPath(a) {
this.el = a;
this.e("LongitudeMemberPath");
}
get radiusMemberPath() {
return this.em;
}
set radiusMemberPath(a) {
this.em = a;
this.e("RadiusMemberPath");
}
get radiusScale() {
return this.dx;
}
set radiusScale(a) {
this.dx = a;
this.e("RadiusScale");
}
get labelMemberPath() {
return this.ej;
}
set labelMemberPath(a) {
this.ej = a;
this.e("LabelMemberPath");
}
get fillMemberPath() {
return this.eh;
}
set fillMemberPath(a) {
this.eh = a;
this.e("FillMemberPath");
}
get fillScale() {
return this.dv;
}
set fillScale(a) {
this.dv = a;
this.e("FillScale");
}
get fillScaleUseGlobalValues() {
return this.dz;
}
set fillScaleUseGlobalValues(a) {
this.dz = a;
this.e("FillScaleUseGlobalValues");
}
get markerOutlineUsesFillScale() {
return this.d2;
}
set markerOutlineUsesFillScale(a) {
this.d2 = a;
this.e("MarkerOutlineUsesFillScale");
}
get markerOutlineBrightness() {
return this.ea;
}
set markerOutlineBrightness(a) {
this.ea = a;
this.e("MarkerOutlineBrightness");
}
get markerBrushBrightness() {
return this.d9;
}
set markerBrushBrightness(a) {
this.d9 = a;
this.e("MarkerBrushBrightness");
}
get radiusScaleUseGlobalValues() {
return this.d3;
}
set radiusScaleUseGlobalValues(a) {
this.d3 = a;
this.e("RadiusScaleUseGlobalValues");
}
get isCustomScatterStyleAllowed() {
return this.d1;
}
set isCustomScatterStyleAllowed(a) {
this.d1 = a;
this.e("IsCustomScatterStyleAllowed");
}
get isCustomScatterMarkerStyleAllowed() {
return this.d0;
}
set isCustomScatterMarkerStyleAllowed(a) {
this.d0 = a;
this.e("IsCustomScatterMarkerStyleAllowed");
}
get itemSearchMode() {
return this.ei;
}
set itemSearchMode(a) {
this.ei = a;
this.e("ItemSearchMode");
}
get itemSearchThreshold() {
return this.ed;
}
set itemSearchThreshold(a) {
this.ed = a;
this.e("ItemSearchThreshold");
}
get assigningScatterStyleRef() {
return this.eg;
}
set assigningScatterStyleRef(a) {
this.eg = a;
this.e("AssigningScatterStyleRef");
}
get assigningScatterMarkerStyleRef() {
return this.ef;
}
set assigningScatterMarkerStyleRef(a) {
this.ef = a;
this.e("AssigningScatterMarkerStyleRef");
}
}
GeographicProportionalSymbolSeriesDescription.$t = markType(GeographicProportionalSymbolSeriesDescription, 'GeographicProportionalSymbolSeriesDescription', GeographicMarkerSeriesDescription.$);
return GeographicProportionalSymbolSeriesDescription;
})();