igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
112 lines (111 loc) • 3.63 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 {
constructor() {
super();
this.dm = null;
this.dn = null;
this.c9 = false;
this.c8 = false;
this.dd = 0;
this.dc = 0;
this.dl = null;
this.dk = null;
this.dg = 0;
this.dh = 0;
this.dp = null;
}
get_type() {
return "GeographicHighDensityScatterSeries";
}
get latitudeMemberPath() {
return this.dm;
}
set latitudeMemberPath(a) {
this.dm = a;
this.e("LatitudeMemberPath");
}
get longitudeMemberPath() {
return this.dn;
}
set longitudeMemberPath(a) {
this.dn = a;
this.e("LongitudeMemberPath");
}
get useBruteForce() {
return this.c9;
}
set useBruteForce(a) {
this.c9 = a;
this.e("UseBruteForce");
}
get progressiveLoad() {
return this.c8;
}
set progressiveLoad(a) {
this.c8 = a;
this.e("ProgressiveLoad");
}
get heatMinimum() {
return this.dd;
}
set heatMinimum(a) {
this.dd = a;
this.e("HeatMinimum");
}
get heatMaximum() {
return this.dc;
}
set heatMaximum(a) {
this.dc = a;
this.e("HeatMaximum");
}
get heatMinimumColor() {
return this.dl;
}
set heatMinimumColor(a) {
this.dl = a;
this.e("HeatMinimumColor");
}
get heatMaximumColor() {
return this.dk;
}
set heatMaximumColor(a) {
this.dk = a;
this.e("HeatMaximumColor");
}
get pointExtent() {
return this.dg;
}
set pointExtent(a) {
this.dg = a;
this.e("PointExtent");
}
get progressiveStatus() {
return this.dh;
}
set progressiveStatus(a) {
this.dh = a;
this.e("ProgressiveStatus");
}
get progressiveLoadStatusChangedRef() {
return this.dp;
}
set progressiveLoadStatusChangedRef(a) {
this.dp = a;
this.e("ProgressiveLoadStatusChangedRef");
}
}
GeographicHighDensityScatterSeriesDescription.$t = markType(GeographicHighDensityScatterSeriesDescription, 'GeographicHighDensityScatterSeriesDescription', GeographicMapSeriesHostDescription.$);
return GeographicHighDensityScatterSeriesDescription;
})();