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.fq = null;
_this.fr = null;
_this.fd = false;
_this.fc = false;
_this.fh = 0;
_this.fg = 0;
_this.fp = null;
_this.fo = null;
_this.fk = 0;
_this.fl = 0;
_this.fs = null;
return _this;
}
GeographicHighDensityScatterSeriesDescription.prototype.get_type = function () {
return "GeographicHighDensityScatterSeries";
};
Object.defineProperty(GeographicHighDensityScatterSeriesDescription.prototype, "latitudeMemberPath", {
get: function () {
return this.fq;
},
set: function (a) {
this.fq = a;
this.j("LatitudeMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicHighDensityScatterSeriesDescription.prototype, "longitudeMemberPath", {
get: function () {
return this.fr;
},
set: function (a) {
this.fr = a;
this.j("LongitudeMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicHighDensityScatterSeriesDescription.prototype, "useBruteForce", {
get: function () {
return this.fd;
},
set: function (a) {
this.fd = a;
this.j("UseBruteForce");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicHighDensityScatterSeriesDescription.prototype, "progressiveLoad", {
get: function () {
return this.fc;
},
set: function (a) {
this.fc = a;
this.j("ProgressiveLoad");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicHighDensityScatterSeriesDescription.prototype, "heatMinimum", {
get: function () {
return this.fh;
},
set: function (a) {
this.fh = a;
this.j("HeatMinimum");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicHighDensityScatterSeriesDescription.prototype, "heatMaximum", {
get: function () {
return this.fg;
},
set: function (a) {
this.fg = a;
this.j("HeatMaximum");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicHighDensityScatterSeriesDescription.prototype, "heatMinimumColor", {
get: function () {
return this.fp;
},
set: function (a) {
this.fp = a;
this.j("HeatMinimumColor");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicHighDensityScatterSeriesDescription.prototype, "heatMaximumColor", {
get: function () {
return this.fo;
},
set: function (a) {
this.fo = a;
this.j("HeatMaximumColor");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicHighDensityScatterSeriesDescription.prototype, "pointExtent", {
get: function () {
return this.fk;
},
set: function (a) {
this.fk = a;
this.j("PointExtent");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicHighDensityScatterSeriesDescription.prototype, "progressiveStatus", {
get: function () {
return this.fl;
},
set: function (a) {
this.fl = a;
this.j("ProgressiveStatus");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicHighDensityScatterSeriesDescription.prototype, "progressiveLoadStatusChangedRef", {
get: function () {
return this.fs;
},
set: function (a) {
this.fs = a;
this.j("ProgressiveLoadStatusChangedRef");
},
enumerable: false,
configurable: true
});
GeographicHighDensityScatterSeriesDescription.$t = markType(GeographicHighDensityScatterSeriesDescription, 'GeographicHighDensityScatterSeriesDescription', GeographicMapSeriesHostDescription.$);
return GeographicHighDensityScatterSeriesDescription;
}(GeographicMapSeriesHostDescription));
export { GeographicHighDensityScatterSeriesDescription };