UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

160 lines (159 loc) 4.73 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 { constructor() { super(); this.dj = null; this.dn = null; this.dm = null; this.dk = null; this.dp = null; this.dl = null; this.dq = null; this.dr = null; this.c5 = false; this.c4 = false; this.c9 = 0; this.c8 = 0; this.dh = null; this.dg = null; this.dc = 0; this.dd = 0; this.di = null; } get_type() { return "HighDensityScatterSeries"; } get xAxisRef() { return this.dj; } set xAxisRef(a) { this.dj = a; this.e("XAxisRef"); } get yAxisRef() { return this.dn; } set yAxisRef(a) { this.dn = a; this.e("YAxisRef"); } get xMemberPath() { return this.dm; } set xMemberPath(a) { this.dm = a; this.e("XMemberPath"); } get xMemberAsLegendLabel() { return this.dk; } set xMemberAsLegendLabel(a) { this.dk = a; this.e("XMemberAsLegendLabel"); } get yMemberAsLegendLabel() { return this.dp; } set yMemberAsLegendLabel(a) { this.dp = a; this.e("YMemberAsLegendLabel"); } get xMemberAsLegendUnit() { return this.dl; } set xMemberAsLegendUnit(a) { this.dl = a; this.e("XMemberAsLegendUnit"); } get yMemberAsLegendUnit() { return this.dq; } set yMemberAsLegendUnit(a) { this.dq = a; this.e("YMemberAsLegendUnit"); } get yMemberPath() { return this.dr; } set yMemberPath(a) { this.dr = a; this.e("YMemberPath"); } get useBruteForce() { return this.c5; } set useBruteForce(a) { this.c5 = a; this.e("UseBruteForce"); } get progressiveLoad() { return this.c4; } set progressiveLoad(a) { this.c4 = a; this.e("ProgressiveLoad"); } get heatMinimum() { return this.c9; } set heatMinimum(a) { this.c9 = a; this.e("HeatMinimum"); } get heatMaximum() { return this.c8; } set heatMaximum(a) { this.c8 = a; this.e("HeatMaximum"); } get heatMinimumColor() { return this.dh; } set heatMinimumColor(a) { this.dh = a; this.e("HeatMinimumColor"); } get heatMaximumColor() { return this.dg; } set heatMaximumColor(a) { this.dg = a; this.e("HeatMaximumColor"); } get pointExtent() { return this.dc; } set pointExtent(a) { this.dc = a; this.e("PointExtent"); } get progressiveStatus() { return this.dd; } set progressiveStatus(a) { this.dd = a; this.e("ProgressiveStatus"); } get progressiveLoadStatusChangedRef() { return this.di; } set progressiveLoadStatusChangedRef(a) { this.di = a; this.e("ProgressiveLoadStatusChangedRef"); } } HighDensityScatterSeriesDescription.$t = markType(HighDensityScatterSeriesDescription, 'HighDensityScatterSeriesDescription', SeriesDescription.$); return HighDensityScatterSeriesDescription; })();