igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
182 lines (181 loc) • 6.17 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 { __extends } from "tslib";
import { SeriesDescription } from "./SeriesDescription";
import { markType } from "./type";
/**
* @hidden
*/
var ScatterTriangulationSeriesDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(ScatterTriangulationSeriesDescription, _super);
function ScatterTriangulationSeriesDescription() {
var _this = _super.call(this) || this;
_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;
return _this;
}
ScatterTriangulationSeriesDescription.prototype.get_type = function () {
return "ScatterTriangulationSeries";
};
Object.defineProperty(ScatterTriangulationSeriesDescription.prototype, "xMemberPath", {
get: function () {
return this.dc;
},
set: function (a) {
this.dc = a;
this.e("XMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ScatterTriangulationSeriesDescription.prototype, "yMemberPath", {
get: function () {
return this.dg;
},
set: function (a) {
this.dg = a;
this.e("YMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ScatterTriangulationSeriesDescription.prototype, "xAxisRef", {
get: function () {
return this.c9;
},
set: function (a) {
this.c9 = a;
this.e("XAxisRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ScatterTriangulationSeriesDescription.prototype, "yAxisRef", {
get: function () {
return this.dd;
},
set: function (a) {
this.dd = a;
this.e("YAxisRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ScatterTriangulationSeriesDescription.prototype, "trianglesSourceRef", {
get: function () {
return this.c4;
},
set: function (a) {
this.c4 = a;
this.e("TrianglesSourceRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ScatterTriangulationSeriesDescription.prototype, "triangleVertexMemberPath1", {
get: function () {
return this.c5;
},
set: function (a) {
this.c5 = a;
this.e("TriangleVertexMemberPath1");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ScatterTriangulationSeriesDescription.prototype, "triangleVertexMemberPath2", {
get: function () {
return this.c6;
},
set: function (a) {
this.c6 = a;
this.e("TriangleVertexMemberPath2");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ScatterTriangulationSeriesDescription.prototype, "triangleVertexMemberPath3", {
get: function () {
return this.c7;
},
set: function (a) {
this.c7 = a;
this.e("TriangleVertexMemberPath3");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ScatterTriangulationSeriesDescription.prototype, "xMemberAsLegendLabel", {
get: function () {
return this.da;
},
set: function (a) {
this.da = a;
this.e("XMemberAsLegendLabel");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ScatterTriangulationSeriesDescription.prototype, "yMemberAsLegendLabel", {
get: function () {
return this.de;
},
set: function (a) {
this.de = a;
this.e("YMemberAsLegendLabel");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ScatterTriangulationSeriesDescription.prototype, "xMemberAsLegendUnit", {
get: function () {
return this.db;
},
set: function (a) {
this.db = a;
this.e("XMemberAsLegendUnit");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ScatterTriangulationSeriesDescription.prototype, "yMemberAsLegendUnit", {
get: function () {
return this.df;
},
set: function (a) {
this.df = a;
this.e("YMemberAsLegendUnit");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ScatterTriangulationSeriesDescription.prototype, "triangulationStatusChangedRef", {
get: function () {
return this.c8;
},
set: function (a) {
this.c8 = a;
this.e("TriangulationStatusChangedRef");
},
enumerable: false,
configurable: true
});
ScatterTriangulationSeriesDescription.$t = markType(ScatterTriangulationSeriesDescription, 'ScatterTriangulationSeriesDescription', SeriesDescription.$);
return ScatterTriangulationSeriesDescription;
}(SeriesDescription));
export { ScatterTriangulationSeriesDescription };