UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

56 lines (55 loc) 2.12 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 { GeographicXYTriangulatingSeriesDescription } from "./GeographicXYTriangulatingSeriesDescription"; import { markType } from "./type"; /** * @hidden */ export let GeographicScatterAreaSeriesDescription = /*@__PURE__*/ (() => { class GeographicScatterAreaSeriesDescription extends GeographicXYTriangulatingSeriesDescription { constructor() { super(); this.dp = null; this.dl = null; this.dk = null; this.dq = null; } get_type() { return "GeographicScatterAreaSeries"; } get colorMemberPath() { return this.dp; } set colorMemberPath(a) { this.dp = a; this.e("ColorMemberPath"); } get colorScale() { return this.dl; } set colorScale(a) { this.dl = a; this.e("ColorScale"); } get actualColorScale() { return this.dk; } set actualColorScale(a) { this.dk = a; this.e("ActualColorScale"); } get triangulationStatusChangedRef() { return this.dq; } set triangulationStatusChangedRef(a) { this.dq = a; this.e("TriangulationStatusChangedRef"); } } GeographicScatterAreaSeriesDescription.$t = markType(GeographicScatterAreaSeriesDescription, 'GeographicScatterAreaSeriesDescription', GeographicXYTriangulatingSeriesDescription.$); return GeographicScatterAreaSeriesDescription; })();