UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

168 lines (167 loc) 5.38 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 { GeographicMarkerSeriesDescription } from "./GeographicMarkerSeriesDescription"; import { markType } from "./type"; /** * @hidden */ export let GeographicProportionalSymbolSeriesDescription = /*@__PURE__*/ (() => { class GeographicProportionalSymbolSeriesDescription extends GeographicMarkerSeriesDescription { constructor() { super(); 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; } get_type() { return "GeographicProportionalSymbolSeries"; } get latitudeMemberPath() { return this.gk; } set latitudeMemberPath(a) { this.gk = a; this.g("LatitudeMemberPath"); } get longitudeMemberPath() { return this.gl; } set longitudeMemberPath(a) { this.gl = a; this.g("LongitudeMemberPath"); } get radiusMemberPath() { return this.gm; } set radiusMemberPath(a) { this.gm = a; this.g("RadiusMemberPath"); } get radiusScale() { return this.fx; } set radiusScale(a) { this.fx = a; this.g("RadiusScale"); } get labelMemberPath() { return this.gj; } set labelMemberPath(a) { this.gj = a; this.g("LabelMemberPath"); } get fillMemberPath() { return this.gh; } set fillMemberPath(a) { this.gh = a; this.g("FillMemberPath"); } get fillScale() { return this.fv; } set fillScale(a) { this.fv = a; this.g("FillScale"); } get fillScaleUseGlobalValues() { return this.fz; } set fillScaleUseGlobalValues(a) { this.fz = a; this.g("FillScaleUseGlobalValues"); } get markerOutlineUsesFillScale() { return this.f2; } set markerOutlineUsesFillScale(a) { this.f2 = a; this.g("MarkerOutlineUsesFillScale"); } get markerOutlineBrightness() { return this.ga; } set markerOutlineBrightness(a) { this.ga = a; this.g("MarkerOutlineBrightness"); } get markerBrushBrightness() { return this.f9; } set markerBrushBrightness(a) { this.f9 = a; this.g("MarkerBrushBrightness"); } get radiusScaleUseGlobalValues() { return this.f3; } set radiusScaleUseGlobalValues(a) { this.f3 = a; this.g("RadiusScaleUseGlobalValues"); } get isCustomScatterStyleAllowed() { return this.f1; } set isCustomScatterStyleAllowed(a) { this.f1 = a; this.g("IsCustomScatterStyleAllowed"); } get isCustomScatterMarkerStyleAllowed() { return this.f0; } set isCustomScatterMarkerStyleAllowed(a) { this.f0 = a; this.g("IsCustomScatterMarkerStyleAllowed"); } get itemSearchMode() { return this.gi; } set itemSearchMode(a) { this.gi = a; this.g("ItemSearchMode"); } get itemSearchThreshold() { return this.gd; } set itemSearchThreshold(a) { this.gd = a; this.g("ItemSearchThreshold"); } get assigningScatterStyleRef() { return this.gg; } set assigningScatterStyleRef(a) { this.gg = a; this.g("AssigningScatterStyleRef"); } get assigningScatterMarkerStyleRef() { return this.gf; } set assigningScatterMarkerStyleRef(a) { this.gf = a; this.g("AssigningScatterMarkerStyleRef"); } } GeographicProportionalSymbolSeriesDescription.$t = markType(GeographicProportionalSymbolSeriesDescription, 'GeographicProportionalSymbolSeriesDescription', GeographicMarkerSeriesDescription.$); return GeographicProportionalSymbolSeriesDescription; })();