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.fo = null; this.fc = 0; this.fm = null; this.fk = null; this.fn = null; this.fj = null; this.fl = null; this.fe = 0; this.fi = null; this.fg = null; this.fh = null; } get_type() { return "GeographicMarkerSeries"; } get markerType() { return this.fo; } set markerType(a) { this.fo = a; this.j("MarkerType"); } get markerThickness() { return this.fc; } set markerThickness(a) { this.fc = a; this.j("MarkerThickness"); } get markerOutlineMode() { return this.fm; } set markerOutlineMode(a) { this.fm = a; this.j("MarkerOutlineMode"); } get markerFillMode() { return this.fk; } set markerFillMode(a) { this.fk = a; this.j("MarkerFillMode"); } get markerTemplateRef() { return this.fn; } set markerTemplateRef(a) { this.fn = a; this.j("MarkerTemplateRef"); } get markerBrush() { return this.fj; } set markerBrush(a) { this.fj = a; this.j("MarkerBrush"); } get markerOutline() { return this.fl; } set markerOutline(a) { this.fl = a; this.j("MarkerOutline"); } get maximumMarkers() { return this.fe; } set maximumMarkers(a) { this.fe = a; this.j("MaximumMarkers"); } get actualMarkerTemplateRef() { return this.fi; } set actualMarkerTemplateRef(a) { this.fi = a; this.j("ActualMarkerTemplateRef"); } get actualMarkerBrush() { return this.fg; } set actualMarkerBrush(a) { this.fg = a; this.j("ActualMarkerBrush"); } get actualMarkerOutline() { return this.fh; } set actualMarkerOutline(a) { this.fh = a; this.j("ActualMarkerOutline"); } } GeographicMarkerSeriesDescription.$t = markType(GeographicMarkerSeriesDescription, 'GeographicMarkerSeriesDescription', GeographicMapSeriesHostDescription.$); return GeographicMarkerSeriesDescription; })();