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.gk = null; _this.gl = null; _this.gm = null; _this.fx = null; _this.gj = null; _this.gh = null; _this.fv = null; _this.fz = false; _this.f2 = false; _this.ga = 0; _this.f9 = 0; _this.f3 = false; _this.f1 = false; _this.f0 = false; _this.gi = null; _this.gd = 0; _this.gg = null; _this.gf = null; return _this; } GeographicProportionalSymbolSeriesDescription.prototype.get_type = function () { return "GeographicProportionalSymbolSeries"; }; Object.defineProperty(GeographicProportionalSymbolSeriesDescription.prototype, "latitudeMemberPath", { get: function () { return this.gk; }, set: function (a) { this.gk = a; this.g("LatitudeMemberPath"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicProportionalSymbolSeriesDescription.prototype, "longitudeMemberPath", { get: function () { return this.gl; }, set: function (a) { this.gl = a; this.g("LongitudeMemberPath"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicProportionalSymbolSeriesDescription.prototype, "radiusMemberPath", { get: function () { return this.gm; }, set: function (a) { this.gm = a; this.g("RadiusMemberPath"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicProportionalSymbolSeriesDescription.prototype, "radiusScale", { get: function () { return this.fx; }, set: function (a) { this.fx = a; this.g("RadiusScale"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicProportionalSymbolSeriesDescription.prototype, "labelMemberPath", { get: function () { return this.gj; }, set: function (a) { this.gj = a; this.g("LabelMemberPath"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicProportionalSymbolSeriesDescription.prototype, "fillMemberPath", { get: function () { return this.gh; }, set: function (a) { this.gh = a; this.g("FillMemberPath"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicProportionalSymbolSeriesDescription.prototype, "fillScale", { get: function () { return this.fv; }, set: function (a) { this.fv = a; this.g("FillScale"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicProportionalSymbolSeriesDescription.prototype, "fillScaleUseGlobalValues", { get: function () { return this.fz; }, set: function (a) { this.fz = a; this.g("FillScaleUseGlobalValues"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicProportionalSymbolSeriesDescription.prototype, "markerOutlineUsesFillScale", { get: function () { return this.f2; }, set: function (a) { this.f2 = a; this.g("MarkerOutlineUsesFillScale"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicProportionalSymbolSeriesDescription.prototype, "markerOutlineBrightness", { get: function () { return this.ga; }, set: function (a) { this.ga = a; this.g("MarkerOutlineBrightness"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicProportionalSymbolSeriesDescription.prototype, "markerBrushBrightness", { get: function () { return this.f9; }, set: function (a) { this.f9 = a; this.g("MarkerBrushBrightness"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicProportionalSymbolSeriesDescription.prototype, "radiusScaleUseGlobalValues", { get: function () { return this.f3; }, set: function (a) { this.f3 = a; this.g("RadiusScaleUseGlobalValues"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicProportionalSymbolSeriesDescription.prototype, "isCustomScatterStyleAllowed", { get: function () { return this.f1; }, set: function (a) { this.f1 = a; this.g("IsCustomScatterStyleAllowed"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicProportionalSymbolSeriesDescription.prototype, "isCustomScatterMarkerStyleAllowed", { get: function () { return this.f0; }, set: function (a) { this.f0 = a; this.g("IsCustomScatterMarkerStyleAllowed"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicProportionalSymbolSeriesDescription.prototype, "itemSearchMode", { get: function () { return this.gi; }, set: function (a) { this.gi = a; this.g("ItemSearchMode"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicProportionalSymbolSeriesDescription.prototype, "itemSearchThreshold", { get: function () { return this.gd; }, set: function (a) { this.gd = a; this.g("ItemSearchThreshold"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicProportionalSymbolSeriesDescription.prototype, "assigningScatterStyleRef", { get: function () { return this.gg; }, set: function (a) { this.gg = a; this.g("AssigningScatterStyleRef"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicProportionalSymbolSeriesDescription.prototype, "assigningScatterMarkerStyleRef", { get: function () { return this.gf; }, set: function (a) { this.gf = a; this.g("AssigningScatterMarkerStyleRef"); }, enumerable: false, configurable: true }); GeographicProportionalSymbolSeriesDescription.$t = markType(GeographicProportionalSymbolSeriesDescription, 'GeographicProportionalSymbolSeriesDescription', GeographicMarkerSeriesDescription.$); return GeographicProportionalSymbolSeriesDescription; }(GeographicMarkerSeriesDescription)); export { GeographicProportionalSymbolSeriesDescription };