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.fi = null;
_this.fm = null;
_this.ff = null;
_this.fj = null;
_this.fa = null;
_this.fb = null;
_this.fc = null;
_this.fd = null;
_this.fg = null;
_this.fk = null;
_this.fh = null;
_this.fl = null;
_this.fe = null;
return _this;
}
ScatterTriangulationSeriesDescription.prototype.get_type = function () {
return "ScatterTriangulationSeries";
};
Object.defineProperty(ScatterTriangulationSeriesDescription.prototype, "xMemberPath", {
get: function () {
return this.fi;
},
set: function (a) {
this.fi = a;
this.j("XMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ScatterTriangulationSeriesDescription.prototype, "yMemberPath", {
get: function () {
return this.fm;
},
set: function (a) {
this.fm = a;
this.j("YMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ScatterTriangulationSeriesDescription.prototype, "xAxisRef", {
get: function () {
return this.ff;
},
set: function (a) {
this.ff = a;
this.j("XAxisRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ScatterTriangulationSeriesDescription.prototype, "yAxisRef", {
get: function () {
return this.fj;
},
set: function (a) {
this.fj = a;
this.j("YAxisRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ScatterTriangulationSeriesDescription.prototype, "trianglesSourceRef", {
get: function () {
return this.fa;
},
set: function (a) {
this.fa = a;
this.j("TrianglesSourceRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ScatterTriangulationSeriesDescription.prototype, "triangleVertexMemberPath1", {
get: function () {
return this.fb;
},
set: function (a) {
this.fb = a;
this.j("TriangleVertexMemberPath1");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ScatterTriangulationSeriesDescription.prototype, "triangleVertexMemberPath2", {
get: function () {
return this.fc;
},
set: function (a) {
this.fc = a;
this.j("TriangleVertexMemberPath2");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ScatterTriangulationSeriesDescription.prototype, "triangleVertexMemberPath3", {
get: function () {
return this.fd;
},
set: function (a) {
this.fd = a;
this.j("TriangleVertexMemberPath3");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ScatterTriangulationSeriesDescription.prototype, "xMemberAsLegendLabel", {
get: function () {
return this.fg;
},
set: function (a) {
this.fg = a;
this.j("XMemberAsLegendLabel");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ScatterTriangulationSeriesDescription.prototype, "yMemberAsLegendLabel", {
get: function () {
return this.fk;
},
set: function (a) {
this.fk = a;
this.j("YMemberAsLegendLabel");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ScatterTriangulationSeriesDescription.prototype, "xMemberAsLegendUnit", {
get: function () {
return this.fh;
},
set: function (a) {
this.fh = a;
this.j("XMemberAsLegendUnit");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ScatterTriangulationSeriesDescription.prototype, "yMemberAsLegendUnit", {
get: function () {
return this.fl;
},
set: function (a) {
this.fl = a;
this.j("YMemberAsLegendUnit");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ScatterTriangulationSeriesDescription.prototype, "triangulationStatusChangedRef", {
get: function () {
return this.fe;
},
set: function (a) {
this.fe = a;
this.j("TriangulationStatusChangedRef");
},
enumerable: false,
configurable: true
});
ScatterTriangulationSeriesDescription.$t = markType(ScatterTriangulationSeriesDescription, 'ScatterTriangulationSeriesDescription', SeriesDescription.$);
return ScatterTriangulationSeriesDescription;
}(SeriesDescription));
export { ScatterTriangulationSeriesDescription };