UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

176 lines (175 loc) 5.08 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 { TileGeneratorDescription } from "./TileGeneratorDescription"; import { markType } from "./type"; /** * @hidden */ export let HeatTileGeneratorDescription = /*@__PURE__*/ (() => { class HeatTileGeneratorDescription extends TileGeneratorDescription { constructor() { super(); this.p = null; this.o = null; this.n = null; this.aq = null; this.ap = null; this.m = null; this.l = null; this.af = 0; this.ah = 0; this.v = false; this.w = false; this.x = false; this.aj = 0; this.ai = 0; this.ag = 0; this.y = false; this.z = false; this.as = null; this.ar = null; } get_type() { return "HeatTileGenerator"; } get yValues() { return this.p; } set yValues(a) { this.p = a; this.j("YValues"); } get xValues() { return this.o; } set xValues(a) { this.o = a; this.j("XValues"); } get values() { return this.n; } set values(a) { this.n = a; this.j("Values"); } get minimumColor() { return this.aq; } set minimumColor(a) { this.aq = a; this.j("MinimumColor"); } get maximumColor() { return this.ap; } set maximumColor(a) { this.ap = a; this.j("MaximumColor"); } get scaleColors() { return this.m; } set scaleColors(a) { this.m = a; this.j("ScaleColors"); } get scaleColorOffsets() { return this.l; } set scaleColorOffsets(a) { this.l = a; this.j("ScaleColorOffsets"); } get blurRadius() { return this.af; } set blurRadius(a) { this.af = a; this.j("BlurRadius"); } get maxBlurRadius() { return this.ah; } set maxBlurRadius(a) { this.ah = a; this.j("MaxBlurRadius"); } get useBlurRadiusAdjustedForZoom() { return this.v; } set useBlurRadiusAdjustedForZoom(a) { this.v = a; this.j("UseBlurRadiusAdjustedForZoom"); } get useGlobalMinMax() { return this.w; } set useGlobalMinMax(a) { this.w = a; this.j("UseGlobalMinMax"); } get useGlobalMinMaxAdjustedForZoom() { return this.x; } set useGlobalMinMaxAdjustedForZoom(a) { this.x = a; this.j("UseGlobalMinMaxAdjustedForZoom"); } get minimumValue() { return this.aj; } set minimumValue(a) { this.aj = a; this.j("MinimumValue"); } get maximumValue() { return this.ai; } set maximumValue(a) { this.ai = a; this.j("MaximumValue"); } get logarithmBase() { return this.ag; } set logarithmBase(a) { this.ag = a; this.j("LogarithmBase"); } get useLogarithmicScale() { return this.y; } set useLogarithmicScale(a) { this.y = a; this.j("UseLogarithmicScale"); } get useWebWorkers() { return this.z; } set useWebWorkers(a) { this.z = a; this.j("UseWebWorkers"); } get webWorkerScriptPath() { return this.as; } set webWorkerScriptPath(a) { this.as = a; this.j("WebWorkerScriptPath"); } get webWorkerInstanceRef() { return this.ar; } set webWorkerInstanceRef(a) { this.ar = a; this.j("WebWorkerInstanceRef"); } } HeatTileGeneratorDescription.$t = markType(HeatTileGeneratorDescription, 'HeatTileGeneratorDescription', TileGeneratorDescription.$); return HeatTileGeneratorDescription; })();