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.fs = null; this.fp = null; this.fo = null; this.ft = null; } get_type() { return "GeographicScatterAreaSeries"; } get colorMemberPath() { return this.fs; } set colorMemberPath(a) { this.fs = a; this.j("ColorMemberPath"); } get colorScale() { return this.fp; } set colorScale(a) { this.fp = a; this.j("ColorScale"); } get actualColorScale() { return this.fo; } set actualColorScale(a) { this.fo = a; this.j("ActualColorScale"); } get triangulationStatusChangedRef() { return this.ft; } set triangulationStatusChangedRef(a) { this.ft = a; this.j("TriangulationStatusChangedRef"); } } GeographicScatterAreaSeriesDescription.$t = markType(GeographicScatterAreaSeriesDescription, 'GeographicScatterAreaSeriesDescription', GeographicXYTriangulatingSeriesDescription.$); return GeographicScatterAreaSeriesDescription; })();