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.f8 = null; this.f6 = null; this.f7 = null; this.f3 = null; this.f2 = null; this.f0 = null; } get_type() { return "ScatterContourSeries"; } get valueMemberPath() { return this.f8; } set valueMemberPath(a) { this.f8 = a; this.j("ValueMemberPath"); } get valueMemberAsLegendLabel() { return this.f6; } set valueMemberAsLegendLabel(a) { this.f6 = a; this.j("ValueMemberAsLegendLabel"); } get valueMemberAsLegendUnit() { return this.f7; } set valueMemberAsLegendUnit(a) { this.f7 = a; this.j("ValueMemberAsLegendUnit"); } get fillScale() { return this.f3; } set fillScale(a) { this.f3 = a; this.j("FillScale"); } get actualFillScale() { return this.f2; } set actualFillScale(a) { this.f2 = a; this.j("ActualFillScale"); } get valueResolver() { return this.f0; } set valueResolver(a) { this.f0 = a; this.j("ValueResolver"); } } ScatterContourSeriesDescription.$t = markType(ScatterContourSeriesDescription, 'ScatterContourSeriesDescription', ScatterTriangulationSeriesDescription.$); return ScatterContourSeriesDescription; })();