igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
128 lines (127 loc) • 4.03 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 { SeriesDescription } from "./SeriesDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let ScatterTriangulationSeriesDescription = /*@__PURE__*/ (() => {
class ScatterTriangulationSeriesDescription extends SeriesDescription {
constructor() {
super();
this.dc = null;
this.dg = null;
this.c9 = null;
this.dd = null;
this.c4 = null;
this.c5 = null;
this.c6 = null;
this.c7 = null;
this.da = null;
this.de = null;
this.db = null;
this.df = null;
this.c8 = null;
}
get_type() {
return "ScatterTriangulationSeries";
}
get xMemberPath() {
return this.dc;
}
set xMemberPath(a) {
this.dc = a;
this.e("XMemberPath");
}
get yMemberPath() {
return this.dg;
}
set yMemberPath(a) {
this.dg = a;
this.e("YMemberPath");
}
get xAxisRef() {
return this.c9;
}
set xAxisRef(a) {
this.c9 = a;
this.e("XAxisRef");
}
get yAxisRef() {
return this.dd;
}
set yAxisRef(a) {
this.dd = a;
this.e("YAxisRef");
}
get trianglesSourceRef() {
return this.c4;
}
set trianglesSourceRef(a) {
this.c4 = a;
this.e("TrianglesSourceRef");
}
get triangleVertexMemberPath1() {
return this.c5;
}
set triangleVertexMemberPath1(a) {
this.c5 = a;
this.e("TriangleVertexMemberPath1");
}
get triangleVertexMemberPath2() {
return this.c6;
}
set triangleVertexMemberPath2(a) {
this.c6 = a;
this.e("TriangleVertexMemberPath2");
}
get triangleVertexMemberPath3() {
return this.c7;
}
set triangleVertexMemberPath3(a) {
this.c7 = a;
this.e("TriangleVertexMemberPath3");
}
get xMemberAsLegendLabel() {
return this.da;
}
set xMemberAsLegendLabel(a) {
this.da = a;
this.e("XMemberAsLegendLabel");
}
get yMemberAsLegendLabel() {
return this.de;
}
set yMemberAsLegendLabel(a) {
this.de = a;
this.e("YMemberAsLegendLabel");
}
get xMemberAsLegendUnit() {
return this.db;
}
set xMemberAsLegendUnit(a) {
this.db = a;
this.e("XMemberAsLegendUnit");
}
get yMemberAsLegendUnit() {
return this.df;
}
set yMemberAsLegendUnit(a) {
this.df = a;
this.e("YMemberAsLegendUnit");
}
get triangulationStatusChangedRef() {
return this.c8;
}
set triangulationStatusChangedRef(a) {
this.c8 = a;
this.e("TriangulationStatusChangedRef");
}
}
ScatterTriangulationSeriesDescription.$t = markType(ScatterTriangulationSeriesDescription, 'ScatterTriangulationSeriesDescription', SeriesDescription.$);
return ScatterTriangulationSeriesDescription;
})();