UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

112 lines (111 loc) 3.52 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 { GeographicMapSeriesHostDescription } from "./GeographicMapSeriesHostDescription"; import { markType } from "./type"; /** * @hidden */ export let GeographicMarkerSeriesDescription = /*@__PURE__*/ (() => { class GeographicMarkerSeriesDescription extends GeographicMapSeriesHostDescription { constructor() { super(); this.dk = null; this.c8 = 0; this.di = null; this.dg = null; this.dj = null; this.df = null; this.dh = null; this.da = 0; this.de = null; this.dc = null; this.dd = null; } get_type() { return "GeographicMarkerSeries"; } get markerType() { return this.dk; } set markerType(a) { this.dk = a; this.e("MarkerType"); } get markerThickness() { return this.c8; } set markerThickness(a) { this.c8 = a; this.e("MarkerThickness"); } get markerOutlineMode() { return this.di; } set markerOutlineMode(a) { this.di = a; this.e("MarkerOutlineMode"); } get markerFillMode() { return this.dg; } set markerFillMode(a) { this.dg = a; this.e("MarkerFillMode"); } get markerTemplateRef() { return this.dj; } set markerTemplateRef(a) { this.dj = a; this.e("MarkerTemplateRef"); } get markerBrush() { return this.df; } set markerBrush(a) { this.df = a; this.e("MarkerBrush"); } get markerOutline() { return this.dh; } set markerOutline(a) { this.dh = a; this.e("MarkerOutline"); } get maximumMarkers() { return this.da; } set maximumMarkers(a) { this.da = a; this.e("MaximumMarkers"); } get actualMarkerTemplateRef() { return this.de; } set actualMarkerTemplateRef(a) { this.de = a; this.e("ActualMarkerTemplateRef"); } get actualMarkerBrush() { return this.dc; } set actualMarkerBrush(a) { this.dc = a; this.e("ActualMarkerBrush"); } get actualMarkerOutline() { return this.dd; } set actualMarkerOutline(a) { this.dd = a; this.e("ActualMarkerOutline"); } } GeographicMarkerSeriesDescription.$t = markType(GeographicMarkerSeriesDescription, 'GeographicMarkerSeriesDescription', GeographicMapSeriesHostDescription.$); return GeographicMarkerSeriesDescription; })();