igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
72 lines (71 loc) • 2.63 kB
JavaScript
/*
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.fa = null;
this.e9 = null;
this.fb = null;
this.fc = null;
this.fd = null;
this.fe = null;
}
get_type() {
return "GeographicXYTriangulatingSeries";
}
get longitudeMemberPath() {
return this.fa;
}
set longitudeMemberPath(a) {
this.fa = a;
this.g("LongitudeMemberPath");
}
get latitudeMemberPath() {
return this.e9;
}
set latitudeMemberPath(a) {
this.e9 = a;
this.g("LatitudeMemberPath");
}
get trianglesSourceRef() {
return this.fb;
}
set trianglesSourceRef(a) {
this.fb = a;
this.g("TrianglesSourceRef");
}
get triangleVertexMemberPath1() {
return this.fc;
}
set triangleVertexMemberPath1(a) {
this.fc = a;
this.g("TriangleVertexMemberPath1");
}
get triangleVertexMemberPath2() {
return this.fd;
}
set triangleVertexMemberPath2(a) {
this.fd = a;
this.g("TriangleVertexMemberPath2");
}
get triangleVertexMemberPath3() {
return this.fe;
}
set triangleVertexMemberPath3(a) {
this.fe = a;
this.g("TriangleVertexMemberPath3");
}
}
GeographicXYTriangulatingSeriesDescription.$t = markType(GeographicXYTriangulatingSeriesDescription, 'GeographicXYTriangulatingSeriesDescription', GeographicMapSeriesHostDescription.$);
return GeographicXYTriangulatingSeriesDescription;
})();