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