UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

72 lines (71 loc) 2.63 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 { GeographicMapSeriesHostDescription } from "./GeographicMapSeriesHostDescription"; import { markType } from "./type"; /** * @hidden */ export let GeographicXYTriangulatingSeriesDescription = /*@__PURE__*/ (() => { class GeographicXYTriangulatingSeriesDescription extends GeographicMapSeriesHostDescription { constructor() { super(); this.c9 = null; this.c8 = null; this.da = null; this.db = null; this.dc = null; this.dd = null; } get_type() { return "GeographicXYTriangulatingSeries"; } get longitudeMemberPath() { return this.c9; } set longitudeMemberPath(a) { this.c9 = a; this.e("LongitudeMemberPath"); } get latitudeMemberPath() { return this.c8; } set latitudeMemberPath(a) { this.c8 = a; this.e("LatitudeMemberPath"); } get trianglesSourceRef() { return this.da; } set trianglesSourceRef(a) { this.da = a; this.e("TrianglesSourceRef"); } get triangleVertexMemberPath1() { return this.db; } set triangleVertexMemberPath1(a) { this.db = a; this.e("TriangleVertexMemberPath1"); } get triangleVertexMemberPath2() { return this.dc; } set triangleVertexMemberPath2(a) { this.dc = a; this.e("TriangleVertexMemberPath2"); } get triangleVertexMemberPath3() { return this.dd; } set triangleVertexMemberPath3(a) { this.dd = a; this.e("TriangleVertexMemberPath3"); } } GeographicXYTriangulatingSeriesDescription.$t = markType(GeographicXYTriangulatingSeriesDescription, 'GeographicXYTriangulatingSeriesDescription', GeographicMapSeriesHostDescription.$); return GeographicXYTriangulatingSeriesDescription; })();