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.d4 = null; this.d5 = null; this.d6 = null; this.dw = false; this.dv = false; this.d3 = null; this.dz = 0; this.d2 = null; this.d1 = null; } get_type() { return "GeographicSymbolSeries"; } get latitudeMemberPath() { return this.d4; } set latitudeMemberPath(a) { this.d4 = a; this.e("LatitudeMemberPath"); } get longitudeMemberPath() { return this.d5; } set longitudeMemberPath(a) { this.d5 = a; this.e("LongitudeMemberPath"); } get markerCollisionAvoidance() { return this.d6; } set markerCollisionAvoidance(a) { this.d6 = a; this.e("MarkerCollisionAvoidance"); } get isCustomScatterStyleAllowed() { return this.dw; } set isCustomScatterStyleAllowed(a) { this.dw = a; this.e("IsCustomScatterStyleAllowed"); } get isCustomScatterMarkerStyleAllowed() { return this.dv; } set isCustomScatterMarkerStyleAllowed(a) { this.dv = a; this.e("IsCustomScatterMarkerStyleAllowed"); } get itemSearchMode() { return this.d3; } set itemSearchMode(a) { this.d3 = a; this.e("ItemSearchMode"); } get itemSearchThreshold() { return this.dz; } set itemSearchThreshold(a) { this.dz = a; this.e("ItemSearchThreshold"); } get assigningScatterStyleRef() { return this.d2; } set assigningScatterStyleRef(a) { this.d2 = a; this.e("AssigningScatterStyleRef"); } get assigningScatterMarkerStyleRef() { return this.d1; } set assigningScatterMarkerStyleRef(a) { this.d1 = a; this.e("AssigningScatterMarkerStyleRef"); } } GeographicSymbolSeriesDescription.$t = markType(GeographicSymbolSeriesDescription, 'GeographicSymbolSeriesDescription', GeographicMarkerSeriesDescription.$); return GeographicSymbolSeriesDescription; })();