UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

96 lines (95 loc) 3.3 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 GeographicSymbolSeriesDescription = /*@__PURE__*/ (() => { class GeographicSymbolSeriesDescription extends GeographicMarkerSeriesDescription { constructor() { super(); this.f7 = null; this.f8 = null; this.f9 = null; this.fz = false; this.fy = false; this.f6 = null; this.f2 = 0; this.f5 = null; this.f4 = null; } get_type() { return "GeographicSymbolSeries"; } get latitudeMemberPath() { return this.f7; } set latitudeMemberPath(a) { this.f7 = a; this.j("LatitudeMemberPath"); } get longitudeMemberPath() { return this.f8; } set longitudeMemberPath(a) { this.f8 = a; this.j("LongitudeMemberPath"); } get markerCollisionAvoidance() { return this.f9; } set markerCollisionAvoidance(a) { this.f9 = a; this.j("MarkerCollisionAvoidance"); } get isCustomScatterStyleAllowed() { return this.fz; } set isCustomScatterStyleAllowed(a) { this.fz = a; this.j("IsCustomScatterStyleAllowed"); } get isCustomScatterMarkerStyleAllowed() { return this.fy; } set isCustomScatterMarkerStyleAllowed(a) { this.fy = a; this.j("IsCustomScatterMarkerStyleAllowed"); } get itemSearchMode() { return this.f6; } set itemSearchMode(a) { this.f6 = a; this.j("ItemSearchMode"); } get itemSearchThreshold() { return this.f2; } set itemSearchThreshold(a) { this.f2 = a; this.j("ItemSearchThreshold"); } get assigningScatterStyleRef() { return this.f5; } set assigningScatterStyleRef(a) { this.f5 = a; this.j("AssigningScatterStyleRef"); } get assigningScatterMarkerStyleRef() { return this.f4; } set assigningScatterMarkerStyleRef(a) { this.f4 = a; this.j("AssigningScatterMarkerStyleRef"); } } GeographicSymbolSeriesDescription.$t = markType(GeographicSymbolSeriesDescription, 'GeographicSymbolSeriesDescription', GeographicMarkerSeriesDescription.$); return GeographicSymbolSeriesDescription; })();