UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

128 lines (127 loc) 4.17 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.fw = null; this.fi = false; this.fh = false; this.fv = null; this.fp = 0; this.fu = null; this.fc = null; this.fg = false; this.fo = 0; this.fe = null; this.fm = 0; this.ft = null; this.fs = null; } get_type() { return "GeographicShapeSeriesBase"; } get shapeMemberPath() { return this.fw; } set shapeMemberPath(a) { this.fw = a; this.j("ShapeMemberPath"); } get isCustomShapeStyleAllowed() { return this.fi; } set isCustomShapeStyleAllowed(a) { this.fi = a; this.j("IsCustomShapeStyleAllowed"); } get isCustomShapeMarkerStyleAllowed() { return this.fh; } set isCustomShapeMarkerStyleAllowed(a) { this.fh = a; this.j("IsCustomShapeMarkerStyleAllowed"); } get itemSearchMode() { return this.fv; } set itemSearchMode(a) { this.fv = a; this.j("ItemSearchMode"); } get itemSearchThreshold() { return this.fp; } set itemSearchThreshold(a) { this.fp = a; this.j("ItemSearchThreshold"); } get fillMemberPath() { return this.fu; } set fillMemberPath(a) { this.fu = a; this.j("FillMemberPath"); } get fillScale() { return this.fc; } set fillScale(a) { this.fc = a; this.j("FillScale"); } get fillScaleUseGlobalValues() { return this.fg; } set fillScaleUseGlobalValues(a) { this.fg = a; this.j("FillScaleUseGlobalValues"); } get itemSearchPointsThreshold() { return this.fo; } set itemSearchPointsThreshold(a) { this.fo = a; this.j("ItemSearchPointsThreshold"); } get shapefileDataSource() { return this.fe; } set shapefileDataSource(a) { this.fe = a; this.j("ShapefileDataSource"); } get shapeFilterResolution() { return this.fm; } set shapeFilterResolution(a) { this.fm = a; this.j("ShapeFilterResolution"); } get assigningShapeStyleRef() { return this.ft; } set assigningShapeStyleRef(a) { this.ft = a; this.j("AssigningShapeStyleRef"); } get assigningShapeMarkerStyleRef() { return this.fs; } set assigningShapeMarkerStyleRef(a) { this.fs = a; this.j("AssigningShapeMarkerStyleRef"); } } GeographicShapeSeriesBaseDescription.$t = markType(GeographicShapeSeriesBaseDescription, 'GeographicShapeSeriesBaseDescription', GeographicMapSeriesHostDescription.$); return GeographicShapeSeriesBaseDescription; })();