UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

254 lines (253 loc) 7.98 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 { __extends } from "tslib"; import { TileGeneratorDescription } from "./TileGeneratorDescription"; import { markType } from "./type"; /** * @hidden */ var HeatTileGeneratorDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(HeatTileGeneratorDescription, _super); function HeatTileGeneratorDescription() { var _this = _super.call(this) || this; _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; return _this; } HeatTileGeneratorDescription.prototype.get_type = function () { return "HeatTileGenerator"; }; Object.defineProperty(HeatTileGeneratorDescription.prototype, "yValues", { get: function () { return this.p; }, set: function (a) { this.p = a; this.j("YValues"); }, enumerable: false, configurable: true }); Object.defineProperty(HeatTileGeneratorDescription.prototype, "xValues", { get: function () { return this.o; }, set: function (a) { this.o = a; this.j("XValues"); }, enumerable: false, configurable: true }); Object.defineProperty(HeatTileGeneratorDescription.prototype, "values", { get: function () { return this.n; }, set: function (a) { this.n = a; this.j("Values"); }, enumerable: false, configurable: true }); Object.defineProperty(HeatTileGeneratorDescription.prototype, "minimumColor", { get: function () { return this.aq; }, set: function (a) { this.aq = a; this.j("MinimumColor"); }, enumerable: false, configurable: true }); Object.defineProperty(HeatTileGeneratorDescription.prototype, "maximumColor", { get: function () { return this.ap; }, set: function (a) { this.ap = a; this.j("MaximumColor"); }, enumerable: false, configurable: true }); Object.defineProperty(HeatTileGeneratorDescription.prototype, "scaleColors", { get: function () { return this.m; }, set: function (a) { this.m = a; this.j("ScaleColors"); }, enumerable: false, configurable: true }); Object.defineProperty(HeatTileGeneratorDescription.prototype, "scaleColorOffsets", { get: function () { return this.l; }, set: function (a) { this.l = a; this.j("ScaleColorOffsets"); }, enumerable: false, configurable: true }); Object.defineProperty(HeatTileGeneratorDescription.prototype, "blurRadius", { get: function () { return this.af; }, set: function (a) { this.af = a; this.j("BlurRadius"); }, enumerable: false, configurable: true }); Object.defineProperty(HeatTileGeneratorDescription.prototype, "maxBlurRadius", { get: function () { return this.ah; }, set: function (a) { this.ah = a; this.j("MaxBlurRadius"); }, enumerable: false, configurable: true }); Object.defineProperty(HeatTileGeneratorDescription.prototype, "useBlurRadiusAdjustedForZoom", { get: function () { return this.v; }, set: function (a) { this.v = a; this.j("UseBlurRadiusAdjustedForZoom"); }, enumerable: false, configurable: true }); Object.defineProperty(HeatTileGeneratorDescription.prototype, "useGlobalMinMax", { get: function () { return this.w; }, set: function (a) { this.w = a; this.j("UseGlobalMinMax"); }, enumerable: false, configurable: true }); Object.defineProperty(HeatTileGeneratorDescription.prototype, "useGlobalMinMaxAdjustedForZoom", { get: function () { return this.x; }, set: function (a) { this.x = a; this.j("UseGlobalMinMaxAdjustedForZoom"); }, enumerable: false, configurable: true }); Object.defineProperty(HeatTileGeneratorDescription.prototype, "minimumValue", { get: function () { return this.aj; }, set: function (a) { this.aj = a; this.j("MinimumValue"); }, enumerable: false, configurable: true }); Object.defineProperty(HeatTileGeneratorDescription.prototype, "maximumValue", { get: function () { return this.ai; }, set: function (a) { this.ai = a; this.j("MaximumValue"); }, enumerable: false, configurable: true }); Object.defineProperty(HeatTileGeneratorDescription.prototype, "logarithmBase", { get: function () { return this.ag; }, set: function (a) { this.ag = a; this.j("LogarithmBase"); }, enumerable: false, configurable: true }); Object.defineProperty(HeatTileGeneratorDescription.prototype, "useLogarithmicScale", { get: function () { return this.y; }, set: function (a) { this.y = a; this.j("UseLogarithmicScale"); }, enumerable: false, configurable: true }); Object.defineProperty(HeatTileGeneratorDescription.prototype, "useWebWorkers", { get: function () { return this.z; }, set: function (a) { this.z = a; this.j("UseWebWorkers"); }, enumerable: false, configurable: true }); Object.defineProperty(HeatTileGeneratorDescription.prototype, "webWorkerScriptPath", { get: function () { return this.as; }, set: function (a) { this.as = a; this.j("WebWorkerScriptPath"); }, enumerable: false, configurable: true }); Object.defineProperty(HeatTileGeneratorDescription.prototype, "webWorkerInstanceRef", { get: function () { return this.ar; }, set: function (a) { this.ar = a; this.j("WebWorkerInstanceRef"); }, enumerable: false, configurable: true }); HeatTileGeneratorDescription.$t = markType(HeatTileGeneratorDescription, 'HeatTileGeneratorDescription', TileGeneratorDescription.$); return HeatTileGeneratorDescription; }(TileGeneratorDescription)); export { HeatTileGeneratorDescription };