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.fd = null;
this.fc = null;
this.fe = null;
this.ff = null;
this.fg = null;
this.fh = null;
}
get_type() {
return "GeographicXYTriangulatingSeries";
}
get longitudeMemberPath() {
return this.fd;
}
set longitudeMemberPath(a) {
this.fd = a;
this.j("LongitudeMemberPath");
}
get latitudeMemberPath() {
return this.fc;
}
set latitudeMemberPath(a) {
this.fc = a;
this.j("LatitudeMemberPath");
}
get trianglesSourceRef() {
return this.fe;
}
set trianglesSourceRef(a) {
this.fe = a;
this.j("TrianglesSourceRef");
}
get triangleVertexMemberPath1() {
return this.ff;
}
set triangleVertexMemberPath1(a) {
this.ff = a;
this.j("TriangleVertexMemberPath1");
}
get triangleVertexMemberPath2() {
return this.fg;
}
set triangleVertexMemberPath2(a) {
this.fg = a;
this.j("TriangleVertexMemberPath2");
}
get triangleVertexMemberPath3() {
return this.fh;
}
set triangleVertexMemberPath3(a) {
this.fh = a;
this.j("TriangleVertexMemberPath3");
}
}
GeographicXYTriangulatingSeriesDescription.$t = markType(GeographicXYTriangulatingSeriesDescription, 'GeographicXYTriangulatingSeriesDescription', GeographicMapSeriesHostDescription.$);
return GeographicXYTriangulatingSeriesDescription;
})();