UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

64 lines (63 loc) 2.25 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 { ScatterTriangulationSeriesDescription } from "./ScatterTriangulationSeriesDescription"; import { markType } from "./type"; /** * @hidden */ export let ScatterAreaSeriesDescription = /*@__PURE__*/ (() => { class ScatterAreaSeriesDescription extends ScatterTriangulationSeriesDescription { constructor() { super(); this.dw = null; this.d1 = null; this.dv = null; this.dz = null; this.d0 = null; } get_type() { return "ScatterAreaSeries"; } get colorScale() { return this.dw; } set colorScale(a) { this.dw = a; this.e("ColorScale"); } get colorMemberPath() { return this.d1; } set colorMemberPath(a) { this.d1 = a; this.e("ColorMemberPath"); } get actualColorScale() { return this.dv; } set actualColorScale(a) { this.dv = a; this.e("ActualColorScale"); } get colorMemberAsLegendLabel() { return this.dz; } set colorMemberAsLegendLabel(a) { this.dz = a; this.e("ColorMemberAsLegendLabel"); } get colorMemberAsLegendUnit() { return this.d0; } set colorMemberAsLegendUnit(a) { this.d0 = a; this.e("ColorMemberAsLegendUnit"); } } ScatterAreaSeriesDescription.$t = markType(ScatterAreaSeriesDescription, 'ScatterAreaSeriesDescription', ScatterTriangulationSeriesDescription.$); return ScatterAreaSeriesDescription; })();