UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

104 lines (103 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 GeographicShapeSeriesBaseDescription = /*@__PURE__*/ (() => { class GeographicShapeSeriesBaseDescription extends GeographicMapSeriesHostDescription { constructor() { super(); this.dn = null; this.db = false; this.da = false; this.dm = null; this.dh = 0; this.dg = 0; this.c8 = null; this.de = 0; this.dl = null; this.dk = null; } get_type() { return "GeographicShapeSeriesBase"; } get shapeMemberPath() { return this.dn; } set shapeMemberPath(a) { this.dn = a; this.e("ShapeMemberPath"); } get isCustomShapeStyleAllowed() { return this.db; } set isCustomShapeStyleAllowed(a) { this.db = a; this.e("IsCustomShapeStyleAllowed"); } get isCustomShapeMarkerStyleAllowed() { return this.da; } set isCustomShapeMarkerStyleAllowed(a) { this.da = a; this.e("IsCustomShapeMarkerStyleAllowed"); } get itemSearchMode() { return this.dm; } set itemSearchMode(a) { this.dm = a; this.e("ItemSearchMode"); } get itemSearchThreshold() { return this.dh; } set itemSearchThreshold(a) { this.dh = a; this.e("ItemSearchThreshold"); } get itemSearchPointsThreshold() { return this.dg; } set itemSearchPointsThreshold(a) { this.dg = a; this.e("ItemSearchPointsThreshold"); } get shapefileDataSource() { return this.c8; } set shapefileDataSource(a) { this.c8 = a; this.e("ShapefileDataSource"); } get shapeFilterResolution() { return this.de; } set shapeFilterResolution(a) { this.de = a; this.e("ShapeFilterResolution"); } get assigningShapeStyleRef() { return this.dl; } set assigningShapeStyleRef(a) { this.dl = a; this.e("AssigningShapeStyleRef"); } get assigningShapeMarkerStyleRef() { return this.dk; } set assigningShapeMarkerStyleRef(a) { this.dk = a; this.e("AssigningShapeMarkerStyleRef"); } } GeographicShapeSeriesBaseDescription.$t = markType(GeographicShapeSeriesBaseDescription, 'GeographicShapeSeriesBaseDescription', GeographicMapSeriesHostDescription.$); return GeographicShapeSeriesBaseDescription; })();