UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

128 lines (127 loc) 4.03 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 { SeriesDescription } from "./SeriesDescription"; import { markType } from "./type"; /** * @hidden */ export let ScatterTriangulationSeriesDescription = /*@__PURE__*/ (() => { class ScatterTriangulationSeriesDescription extends SeriesDescription { constructor() { super(); this.fi = null; this.fm = null; this.ff = null; this.fj = null; this.fa = null; this.fb = null; this.fc = null; this.fd = null; this.fg = null; this.fk = null; this.fh = null; this.fl = null; this.fe = null; } get_type() { return "ScatterTriangulationSeries"; } get xMemberPath() { return this.fi; } set xMemberPath(a) { this.fi = a; this.j("XMemberPath"); } get yMemberPath() { return this.fm; } set yMemberPath(a) { this.fm = a; this.j("YMemberPath"); } get xAxisRef() { return this.ff; } set xAxisRef(a) { this.ff = a; this.j("XAxisRef"); } get yAxisRef() { return this.fj; } set yAxisRef(a) { this.fj = a; this.j("YAxisRef"); } get trianglesSourceRef() { return this.fa; } set trianglesSourceRef(a) { this.fa = a; this.j("TrianglesSourceRef"); } get triangleVertexMemberPath1() { return this.fb; } set triangleVertexMemberPath1(a) { this.fb = a; this.j("TriangleVertexMemberPath1"); } get triangleVertexMemberPath2() { return this.fc; } set triangleVertexMemberPath2(a) { this.fc = a; this.j("TriangleVertexMemberPath2"); } get triangleVertexMemberPath3() { return this.fd; } set triangleVertexMemberPath3(a) { this.fd = a; this.j("TriangleVertexMemberPath3"); } get xMemberAsLegendLabel() { return this.fg; } set xMemberAsLegendLabel(a) { this.fg = a; this.j("XMemberAsLegendLabel"); } get yMemberAsLegendLabel() { return this.fk; } set yMemberAsLegendLabel(a) { this.fk = a; this.j("YMemberAsLegendLabel"); } get xMemberAsLegendUnit() { return this.fh; } set xMemberAsLegendUnit(a) { this.fh = a; this.j("XMemberAsLegendUnit"); } get yMemberAsLegendUnit() { return this.fl; } set yMemberAsLegendUnit(a) { this.fl = a; this.j("YMemberAsLegendUnit"); } get triangulationStatusChangedRef() { return this.fe; } set triangulationStatusChangedRef(a) { this.fe = a; this.j("TriangulationStatusChangedRef"); } } ScatterTriangulationSeriesDescription.$t = markType(ScatterTriangulationSeriesDescription, 'ScatterTriangulationSeriesDescription', SeriesDescription.$); return ScatterTriangulationSeriesDescription; })();