UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

72 lines (71 loc) 2.47 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 ScatterContourSeriesDescription = /*@__PURE__*/ (() => { class ScatterContourSeriesDescription extends ScatterTriangulationSeriesDescription { constructor() { super(); this.d3 = null; this.d1 = null; this.d2 = null; this.dy = null; this.dx = null; this.dv = null; } get_type() { return "ScatterContourSeries"; } get valueMemberPath() { return this.d3; } set valueMemberPath(a) { this.d3 = a; this.e("ValueMemberPath"); } get valueMemberAsLegendLabel() { return this.d1; } set valueMemberAsLegendLabel(a) { this.d1 = a; this.e("ValueMemberAsLegendLabel"); } get valueMemberAsLegendUnit() { return this.d2; } set valueMemberAsLegendUnit(a) { this.d2 = a; this.e("ValueMemberAsLegendUnit"); } get fillScale() { return this.dy; } set fillScale(a) { this.dy = a; this.e("FillScale"); } get actualFillScale() { return this.dx; } set actualFillScale(a) { this.dx = a; this.e("ActualFillScale"); } get valueResolver() { return this.dv; } set valueResolver(a) { this.dv = a; this.e("ValueResolver"); } } ScatterContourSeriesDescription.$t = markType(ScatterContourSeriesDescription, 'ScatterContourSeriesDescription', ScatterTriangulationSeriesDescription.$); return ScatterContourSeriesDescription; })();