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.gn = null; this.go = null; this.gp = null; this.f0 = null; this.gm = null; this.gk = null; this.fy = null; this.f2 = false; this.f5 = false; this.gd = 0; this.gc = 0; this.f6 = false; this.f4 = false; this.f3 = false; this.gl = null; this.gg = 0; this.gj = null; this.gi = null; } get_type() { return "GeographicProportionalSymbolSeries"; } get latitudeMemberPath() { return this.gn; } set latitudeMemberPath(a) { this.gn = a; this.j("LatitudeMemberPath"); } get longitudeMemberPath() { return this.go; } set longitudeMemberPath(a) { this.go = a; this.j("LongitudeMemberPath"); } get radiusMemberPath() { return this.gp; } set radiusMemberPath(a) { this.gp = a; this.j("RadiusMemberPath"); } get radiusScale() { return this.f0; } set radiusScale(a) { this.f0 = a; this.j("RadiusScale"); } get labelMemberPath() { return this.gm; } set labelMemberPath(a) { this.gm = a; this.j("LabelMemberPath"); } get fillMemberPath() { return this.gk; } set fillMemberPath(a) { this.gk = a; this.j("FillMemberPath"); } get fillScale() { return this.fy; } set fillScale(a) { this.fy = a; this.j("FillScale"); } get fillScaleUseGlobalValues() { return this.f2; } set fillScaleUseGlobalValues(a) { this.f2 = a; this.j("FillScaleUseGlobalValues"); } get markerOutlineUsesFillScale() { return this.f5; } set markerOutlineUsesFillScale(a) { this.f5 = a; this.j("MarkerOutlineUsesFillScale"); } get markerOutlineBrightness() { return this.gd; } set markerOutlineBrightness(a) { this.gd = a; this.j("MarkerOutlineBrightness"); } get markerBrushBrightness() { return this.gc; } set markerBrushBrightness(a) { this.gc = a; this.j("MarkerBrushBrightness"); } get radiusScaleUseGlobalValues() { return this.f6; } set radiusScaleUseGlobalValues(a) { this.f6 = a; this.j("RadiusScaleUseGlobalValues"); } get isCustomScatterStyleAllowed() { return this.f4; } set isCustomScatterStyleAllowed(a) { this.f4 = a; this.j("IsCustomScatterStyleAllowed"); } get isCustomScatterMarkerStyleAllowed() { return this.f3; } set isCustomScatterMarkerStyleAllowed(a) { this.f3 = a; this.j("IsCustomScatterMarkerStyleAllowed"); } get itemSearchMode() { return this.gl; } set itemSearchMode(a) { this.gl = a; this.j("ItemSearchMode"); } get itemSearchThreshold() { return this.gg; } set itemSearchThreshold(a) { this.gg = a; this.j("ItemSearchThreshold"); } get assigningScatterStyleRef() { return this.gj; } set assigningScatterStyleRef(a) { this.gj = a; this.j("AssigningScatterStyleRef"); } get assigningScatterMarkerStyleRef() { return this.gi; } set assigningScatterMarkerStyleRef(a) { this.gi = a; this.j("AssigningScatterMarkerStyleRef"); } } GeographicProportionalSymbolSeriesDescription.$t = markType(GeographicProportionalSymbolSeriesDescription, 'GeographicProportionalSymbolSeriesDescription', GeographicMarkerSeriesDescription.$); return GeographicProportionalSymbolSeriesDescription; })();