UNPKG

igniteui-react-core

Version:
160 lines (159 loc) 4.59 kB
/* 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 { get_type() { return "HighDensityScatterSeries"; } constructor() { super(); this.fk = null; this.fo = null; this.fn = null; this.fl = null; this.fp = null; this.fm = null; this.fq = null; this.fr = null; this.e6 = false; this.e5 = false; this.fa = 0; this.e9 = 0; this.fi = null; this.fh = null; this.fd = 0; this.fe = 0; this.fj = null; } get xAxisRef() { return this.fk; } set xAxisRef(a) { this.fk = a; this.g("XAxisRef"); } get yAxisRef() { return this.fo; } set yAxisRef(a) { this.fo = a; this.g("YAxisRef"); } get xMemberPath() { return this.fn; } set xMemberPath(a) { this.fn = a; this.g("XMemberPath"); } get xMemberAsLegendLabel() { return this.fl; } set xMemberAsLegendLabel(a) { this.fl = a; this.g("XMemberAsLegendLabel"); } get yMemberAsLegendLabel() { return this.fp; } set yMemberAsLegendLabel(a) { this.fp = a; this.g("YMemberAsLegendLabel"); } get xMemberAsLegendUnit() { return this.fm; } set xMemberAsLegendUnit(a) { this.fm = a; this.g("XMemberAsLegendUnit"); } get yMemberAsLegendUnit() { return this.fq; } set yMemberAsLegendUnit(a) { this.fq = a; this.g("YMemberAsLegendUnit"); } get yMemberPath() { return this.fr; } set yMemberPath(a) { this.fr = a; this.g("YMemberPath"); } get useBruteForce() { return this.e6; } set useBruteForce(a) { this.e6 = a; this.g("UseBruteForce"); } get progressiveLoad() { return this.e5; } set progressiveLoad(a) { this.e5 = a; this.g("ProgressiveLoad"); } get heatMinimum() { return this.fa; } set heatMinimum(a) { this.fa = a; this.g("HeatMinimum"); } get heatMaximum() { return this.e9; } set heatMaximum(a) { this.e9 = a; this.g("HeatMaximum"); } get heatMinimumColor() { return this.fi; } set heatMinimumColor(a) { this.fi = a; this.g("HeatMinimumColor"); } get heatMaximumColor() { return this.fh; } set heatMaximumColor(a) { this.fh = a; this.g("HeatMaximumColor"); } get pointExtent() { return this.fd; } set pointExtent(a) { this.fd = a; this.g("PointExtent"); } get progressiveStatus() { return this.fe; } set progressiveStatus(a) { this.fe = a; this.g("ProgressiveStatus"); } get progressiveLoadStatusChangedRef() { return this.fj; } set progressiveLoadStatusChangedRef(a) { this.fj = a; this.g("ProgressiveLoadStatusChangedRef"); } } HighDensityScatterSeriesDescription.$t = /*@__PURE__*/ markType(HighDensityScatterSeriesDescription, 'HighDensityScatterSeriesDescription', SeriesDescription.$); return HighDensityScatterSeriesDescription; })();