igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
230 lines (229 loc) • 7.49 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 { SeriesDescription } from "./SeriesDescription";
import { markType } from "./type";
/**
* @hidden
*/
var HighDensityScatterSeriesDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(HighDensityScatterSeriesDescription, _super);
function HighDensityScatterSeriesDescription() {
var _this = _super.call(this) || this;
_this.fp = null;
_this.ft = null;
_this.fs = null;
_this.fq = null;
_this.fu = null;
_this.fr = null;
_this.fv = null;
_this.fw = null;
_this.fb = false;
_this.fa = false;
_this.ff = 0;
_this.fe = 0;
_this.fn = null;
_this.fm = null;
_this.fi = 0;
_this.fj = 0;
_this.fo = null;
return _this;
}
HighDensityScatterSeriesDescription.prototype.get_type = function () {
return "HighDensityScatterSeries";
};
Object.defineProperty(HighDensityScatterSeriesDescription.prototype, "xAxisRef", {
get: function () {
return this.fp;
},
set: function (a) {
this.fp = a;
this.j("XAxisRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(HighDensityScatterSeriesDescription.prototype, "yAxisRef", {
get: function () {
return this.ft;
},
set: function (a) {
this.ft = a;
this.j("YAxisRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(HighDensityScatterSeriesDescription.prototype, "xMemberPath", {
get: function () {
return this.fs;
},
set: function (a) {
this.fs = a;
this.j("XMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(HighDensityScatterSeriesDescription.prototype, "xMemberAsLegendLabel", {
get: function () {
return this.fq;
},
set: function (a) {
this.fq = a;
this.j("XMemberAsLegendLabel");
},
enumerable: false,
configurable: true
});
Object.defineProperty(HighDensityScatterSeriesDescription.prototype, "yMemberAsLegendLabel", {
get: function () {
return this.fu;
},
set: function (a) {
this.fu = a;
this.j("YMemberAsLegendLabel");
},
enumerable: false,
configurable: true
});
Object.defineProperty(HighDensityScatterSeriesDescription.prototype, "xMemberAsLegendUnit", {
get: function () {
return this.fr;
},
set: function (a) {
this.fr = a;
this.j("XMemberAsLegendUnit");
},
enumerable: false,
configurable: true
});
Object.defineProperty(HighDensityScatterSeriesDescription.prototype, "yMemberAsLegendUnit", {
get: function () {
return this.fv;
},
set: function (a) {
this.fv = a;
this.j("YMemberAsLegendUnit");
},
enumerable: false,
configurable: true
});
Object.defineProperty(HighDensityScatterSeriesDescription.prototype, "yMemberPath", {
get: function () {
return this.fw;
},
set: function (a) {
this.fw = a;
this.j("YMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(HighDensityScatterSeriesDescription.prototype, "useBruteForce", {
get: function () {
return this.fb;
},
set: function (a) {
this.fb = a;
this.j("UseBruteForce");
},
enumerable: false,
configurable: true
});
Object.defineProperty(HighDensityScatterSeriesDescription.prototype, "progressiveLoad", {
get: function () {
return this.fa;
},
set: function (a) {
this.fa = a;
this.j("ProgressiveLoad");
},
enumerable: false,
configurable: true
});
Object.defineProperty(HighDensityScatterSeriesDescription.prototype, "heatMinimum", {
get: function () {
return this.ff;
},
set: function (a) {
this.ff = a;
this.j("HeatMinimum");
},
enumerable: false,
configurable: true
});
Object.defineProperty(HighDensityScatterSeriesDescription.prototype, "heatMaximum", {
get: function () {
return this.fe;
},
set: function (a) {
this.fe = a;
this.j("HeatMaximum");
},
enumerable: false,
configurable: true
});
Object.defineProperty(HighDensityScatterSeriesDescription.prototype, "heatMinimumColor", {
get: function () {
return this.fn;
},
set: function (a) {
this.fn = a;
this.j("HeatMinimumColor");
},
enumerable: false,
configurable: true
});
Object.defineProperty(HighDensityScatterSeriesDescription.prototype, "heatMaximumColor", {
get: function () {
return this.fm;
},
set: function (a) {
this.fm = a;
this.j("HeatMaximumColor");
},
enumerable: false,
configurable: true
});
Object.defineProperty(HighDensityScatterSeriesDescription.prototype, "pointExtent", {
get: function () {
return this.fi;
},
set: function (a) {
this.fi = a;
this.j("PointExtent");
},
enumerable: false,
configurable: true
});
Object.defineProperty(HighDensityScatterSeriesDescription.prototype, "progressiveStatus", {
get: function () {
return this.fj;
},
set: function (a) {
this.fj = a;
this.j("ProgressiveStatus");
},
enumerable: false,
configurable: true
});
Object.defineProperty(HighDensityScatterSeriesDescription.prototype, "progressiveLoadStatusChangedRef", {
get: function () {
return this.fo;
},
set: function (a) {
this.fo = a;
this.j("ProgressiveLoadStatusChangedRef");
},
enumerable: false,
configurable: true
});
HighDensityScatterSeriesDescription.$t = markType(HighDensityScatterSeriesDescription, 'HighDensityScatterSeriesDescription', SeriesDescription.$);
return HighDensityScatterSeriesDescription;
}(SeriesDescription));
export { HighDensityScatterSeriesDescription };