UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

112 lines (111 loc) 3.63 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 { GeographicMapSeriesHostDescription } from "./GeographicMapSeriesHostDescription"; import { markType } from "./type"; /** * @hidden */ export let GeographicHighDensityScatterSeriesDescription = /*@__PURE__*/ (() => { class GeographicHighDensityScatterSeriesDescription extends GeographicMapSeriesHostDescription { constructor() { super(); 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; } get_type() { return "GeographicHighDensityScatterSeries"; } get latitudeMemberPath() { return this.fq; } set latitudeMemberPath(a) { this.fq = a; this.j("LatitudeMemberPath"); } get longitudeMemberPath() { return this.fr; } set longitudeMemberPath(a) { this.fr = a; this.j("LongitudeMemberPath"); } get useBruteForce() { return this.fd; } set useBruteForce(a) { this.fd = a; this.j("UseBruteForce"); } get progressiveLoad() { return this.fc; } set progressiveLoad(a) { this.fc = a; this.j("ProgressiveLoad"); } get heatMinimum() { return this.fh; } set heatMinimum(a) { this.fh = a; this.j("HeatMinimum"); } get heatMaximum() { return this.fg; } set heatMaximum(a) { this.fg = a; this.j("HeatMaximum"); } get heatMinimumColor() { return this.fp; } set heatMinimumColor(a) { this.fp = a; this.j("HeatMinimumColor"); } get heatMaximumColor() { return this.fo; } set heatMaximumColor(a) { this.fo = a; this.j("HeatMaximumColor"); } get pointExtent() { return this.fk; } set pointExtent(a) { this.fk = a; this.j("PointExtent"); } get progressiveStatus() { return this.fl; } set progressiveStatus(a) { this.fl = a; this.j("ProgressiveStatus"); } get progressiveLoadStatusChangedRef() { return this.fs; } set progressiveLoadStatusChangedRef(a) { this.fs = a; this.j("ProgressiveLoadStatusChangedRef"); } } GeographicHighDensityScatterSeriesDescription.$t = markType(GeographicHighDensityScatterSeriesDescription, 'GeographicHighDensityScatterSeriesDescription', GeographicMapSeriesHostDescription.$); return GeographicHighDensityScatterSeriesDescription; })();