igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
158 lines (157 loc) • 5.61 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 { __extends } from "tslib";
import { GeographicMapSeriesHostDescription } from "./GeographicMapSeriesHostDescription";
import { markType } from "./type";
/**
* @hidden
*/
var GeographicHighDensityScatterSeriesDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(GeographicHighDensityScatterSeriesDescription, _super);
function GeographicHighDensityScatterSeriesDescription() {
var _this = _super.call(this) || this;
_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;
return _this;
}
GeographicHighDensityScatterSeriesDescription.prototype.get_type = function () {
return "GeographicHighDensityScatterSeries";
};
Object.defineProperty(GeographicHighDensityScatterSeriesDescription.prototype, "latitudeMemberPath", {
get: function () {
return this.dm;
},
set: function (a) {
this.dm = a;
this.e("LatitudeMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicHighDensityScatterSeriesDescription.prototype, "longitudeMemberPath", {
get: function () {
return this.dn;
},
set: function (a) {
this.dn = a;
this.e("LongitudeMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicHighDensityScatterSeriesDescription.prototype, "useBruteForce", {
get: function () {
return this.c9;
},
set: function (a) {
this.c9 = a;
this.e("UseBruteForce");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicHighDensityScatterSeriesDescription.prototype, "progressiveLoad", {
get: function () {
return this.c8;
},
set: function (a) {
this.c8 = a;
this.e("ProgressiveLoad");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicHighDensityScatterSeriesDescription.prototype, "heatMinimum", {
get: function () {
return this.dd;
},
set: function (a) {
this.dd = a;
this.e("HeatMinimum");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicHighDensityScatterSeriesDescription.prototype, "heatMaximum", {
get: function () {
return this.dc;
},
set: function (a) {
this.dc = a;
this.e("HeatMaximum");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicHighDensityScatterSeriesDescription.prototype, "heatMinimumColor", {
get: function () {
return this.dl;
},
set: function (a) {
this.dl = a;
this.e("HeatMinimumColor");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicHighDensityScatterSeriesDescription.prototype, "heatMaximumColor", {
get: function () {
return this.dk;
},
set: function (a) {
this.dk = a;
this.e("HeatMaximumColor");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicHighDensityScatterSeriesDescription.prototype, "pointExtent", {
get: function () {
return this.dg;
},
set: function (a) {
this.dg = a;
this.e("PointExtent");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicHighDensityScatterSeriesDescription.prototype, "progressiveStatus", {
get: function () {
return this.dh;
},
set: function (a) {
this.dh = a;
this.e("ProgressiveStatus");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicHighDensityScatterSeriesDescription.prototype, "progressiveLoadStatusChangedRef", {
get: function () {
return this.dp;
},
set: function (a) {
this.dp = a;
this.e("ProgressiveLoadStatusChangedRef");
},
enumerable: false,
configurable: true
});
GeographicHighDensityScatterSeriesDescription.$t = markType(GeographicHighDensityScatterSeriesDescription, 'GeographicHighDensityScatterSeriesDescription', GeographicMapSeriesHostDescription.$);
return GeographicHighDensityScatterSeriesDescription;
}(GeographicMapSeriesHostDescription));
export { GeographicHighDensityScatterSeriesDescription };