igniteui-react-core
Version:
Ignite UI React Core.
112 lines (111 loc) • 3.53 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 { GeographicMapSeriesHostDescription } from "./GeographicMapSeriesHostDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let GeographicHighDensityScatterSeriesDescription = /*@__PURE__*/ (() => {
class GeographicHighDensityScatterSeriesDescription extends GeographicMapSeriesHostDescription {
get_type() {
return "GeographicHighDensityScatterSeries";
}
constructor() {
super();
this.fn = null;
this.fo = null;
this.fa = false;
this.e9 = false;
this.fe = 0;
this.fd = 0;
this.fm = null;
this.fl = null;
this.fh = 0;
this.fi = 0;
this.fp = null;
}
get latitudeMemberPath() {
return this.fn;
}
set latitudeMemberPath(a) {
this.fn = a;
this.g("LatitudeMemberPath");
}
get longitudeMemberPath() {
return this.fo;
}
set longitudeMemberPath(a) {
this.fo = a;
this.g("LongitudeMemberPath");
}
get useBruteForce() {
return this.fa;
}
set useBruteForce(a) {
this.fa = a;
this.g("UseBruteForce");
}
get progressiveLoad() {
return this.e9;
}
set progressiveLoad(a) {
this.e9 = a;
this.g("ProgressiveLoad");
}
get heatMinimum() {
return this.fe;
}
set heatMinimum(a) {
this.fe = a;
this.g("HeatMinimum");
}
get heatMaximum() {
return this.fd;
}
set heatMaximum(a) {
this.fd = a;
this.g("HeatMaximum");
}
get heatMinimumColor() {
return this.fm;
}
set heatMinimumColor(a) {
this.fm = a;
this.g("HeatMinimumColor");
}
get heatMaximumColor() {
return this.fl;
}
set heatMaximumColor(a) {
this.fl = a;
this.g("HeatMaximumColor");
}
get pointExtent() {
return this.fh;
}
set pointExtent(a) {
this.fh = a;
this.g("PointExtent");
}
get progressiveStatus() {
return this.fi;
}
set progressiveStatus(a) {
this.fi = a;
this.g("ProgressiveStatus");
}
get progressiveLoadStatusChangedRef() {
return this.fp;
}
set progressiveLoadStatusChangedRef(a) {
this.fp = a;
this.g("ProgressiveLoadStatusChangedRef");
}
}
GeographicHighDensityScatterSeriesDescription.$t = /*@__PURE__*/ markType(GeographicHighDensityScatterSeriesDescription, 'GeographicHighDensityScatterSeriesDescription', GeographicMapSeriesHostDescription.$);
return GeographicHighDensityScatterSeriesDescription;
})();