UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

242 lines (241 loc) 8.39 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 { GeographicMarkerSeriesDescription } from "./GeographicMarkerSeriesDescription"; import { markType } from "./type"; /** * @hidden */ var GeographicProportionalSymbolSeriesDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(GeographicProportionalSymbolSeriesDescription, _super); function GeographicProportionalSymbolSeriesDescription() { var _this = _super.call(this) || this; _this.ek = null; _this.el = null; _this.em = null; _this.dx = null; _this.ej = null; _this.eh = null; _this.dv = null; _this.dz = false; _this.d2 = false; _this.ea = 0; _this.d9 = 0; _this.d3 = false; _this.d1 = false; _this.d0 = false; _this.ei = null; _this.ed = 0; _this.eg = null; _this.ef = null; return _this; } GeographicProportionalSymbolSeriesDescription.prototype.get_type = function () { return "GeographicProportionalSymbolSeries"; }; Object.defineProperty(GeographicProportionalSymbolSeriesDescription.prototype, "latitudeMemberPath", { get: function () { return this.ek; }, set: function (a) { this.ek = a; this.e("LatitudeMemberPath"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicProportionalSymbolSeriesDescription.prototype, "longitudeMemberPath", { get: function () { return this.el; }, set: function (a) { this.el = a; this.e("LongitudeMemberPath"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicProportionalSymbolSeriesDescription.prototype, "radiusMemberPath", { get: function () { return this.em; }, set: function (a) { this.em = a; this.e("RadiusMemberPath"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicProportionalSymbolSeriesDescription.prototype, "radiusScale", { get: function () { return this.dx; }, set: function (a) { this.dx = a; this.e("RadiusScale"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicProportionalSymbolSeriesDescription.prototype, "labelMemberPath", { get: function () { return this.ej; }, set: function (a) { this.ej = a; this.e("LabelMemberPath"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicProportionalSymbolSeriesDescription.prototype, "fillMemberPath", { get: function () { return this.eh; }, set: function (a) { this.eh = a; this.e("FillMemberPath"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicProportionalSymbolSeriesDescription.prototype, "fillScale", { get: function () { return this.dv; }, set: function (a) { this.dv = a; this.e("FillScale"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicProportionalSymbolSeriesDescription.prototype, "fillScaleUseGlobalValues", { get: function () { return this.dz; }, set: function (a) { this.dz = a; this.e("FillScaleUseGlobalValues"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicProportionalSymbolSeriesDescription.prototype, "markerOutlineUsesFillScale", { get: function () { return this.d2; }, set: function (a) { this.d2 = a; this.e("MarkerOutlineUsesFillScale"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicProportionalSymbolSeriesDescription.prototype, "markerOutlineBrightness", { get: function () { return this.ea; }, set: function (a) { this.ea = a; this.e("MarkerOutlineBrightness"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicProportionalSymbolSeriesDescription.prototype, "markerBrushBrightness", { get: function () { return this.d9; }, set: function (a) { this.d9 = a; this.e("MarkerBrushBrightness"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicProportionalSymbolSeriesDescription.prototype, "radiusScaleUseGlobalValues", { get: function () { return this.d3; }, set: function (a) { this.d3 = a; this.e("RadiusScaleUseGlobalValues"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicProportionalSymbolSeriesDescription.prototype, "isCustomScatterStyleAllowed", { get: function () { return this.d1; }, set: function (a) { this.d1 = a; this.e("IsCustomScatterStyleAllowed"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicProportionalSymbolSeriesDescription.prototype, "isCustomScatterMarkerStyleAllowed", { get: function () { return this.d0; }, set: function (a) { this.d0 = a; this.e("IsCustomScatterMarkerStyleAllowed"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicProportionalSymbolSeriesDescription.prototype, "itemSearchMode", { get: function () { return this.ei; }, set: function (a) { this.ei = a; this.e("ItemSearchMode"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicProportionalSymbolSeriesDescription.prototype, "itemSearchThreshold", { get: function () { return this.ed; }, set: function (a) { this.ed = a; this.e("ItemSearchThreshold"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicProportionalSymbolSeriesDescription.prototype, "assigningScatterStyleRef", { get: function () { return this.eg; }, set: function (a) { this.eg = a; this.e("AssigningScatterStyleRef"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicProportionalSymbolSeriesDescription.prototype, "assigningScatterMarkerStyleRef", { get: function () { return this.ef; }, set: function (a) { this.ef = a; this.e("AssigningScatterMarkerStyleRef"); }, enumerable: false, configurable: true }); GeographicProportionalSymbolSeriesDescription.$t = markType(GeographicProportionalSymbolSeriesDescription, 'GeographicProportionalSymbolSeriesDescription', GeographicMarkerSeriesDescription.$); return GeographicProportionalSymbolSeriesDescription; }(GeographicMarkerSeriesDescription)); export { GeographicProportionalSymbolSeriesDescription };