igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
98 lines (97 loc) • 3.77 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 { GeographicMapSeriesHostDescription } from "./GeographicMapSeriesHostDescription";
import { markType } from "./type";
/**
* @hidden
*/
var GeographicXYTriangulatingSeriesDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(GeographicXYTriangulatingSeriesDescription, _super);
function GeographicXYTriangulatingSeriesDescription() {
var _this = _super.call(this) || this;
_this.c9 = null;
_this.c8 = null;
_this.da = null;
_this.db = null;
_this.dc = null;
_this.dd = null;
return _this;
}
GeographicXYTriangulatingSeriesDescription.prototype.get_type = function () {
return "GeographicXYTriangulatingSeries";
};
Object.defineProperty(GeographicXYTriangulatingSeriesDescription.prototype, "longitudeMemberPath", {
get: function () {
return this.c9;
},
set: function (a) {
this.c9 = a;
this.e("LongitudeMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicXYTriangulatingSeriesDescription.prototype, "latitudeMemberPath", {
get: function () {
return this.c8;
},
set: function (a) {
this.c8 = a;
this.e("LatitudeMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicXYTriangulatingSeriesDescription.prototype, "trianglesSourceRef", {
get: function () {
return this.da;
},
set: function (a) {
this.da = a;
this.e("TrianglesSourceRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicXYTriangulatingSeriesDescription.prototype, "triangleVertexMemberPath1", {
get: function () {
return this.db;
},
set: function (a) {
this.db = a;
this.e("TriangleVertexMemberPath1");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicXYTriangulatingSeriesDescription.prototype, "triangleVertexMemberPath2", {
get: function () {
return this.dc;
},
set: function (a) {
this.dc = a;
this.e("TriangleVertexMemberPath2");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicXYTriangulatingSeriesDescription.prototype, "triangleVertexMemberPath3", {
get: function () {
return this.dd;
},
set: function (a) {
this.dd = a;
this.e("TriangleVertexMemberPath3");
},
enumerable: false,
configurable: true
});
GeographicXYTriangulatingSeriesDescription.$t = markType(GeographicXYTriangulatingSeriesDescription, 'GeographicXYTriangulatingSeriesDescription', GeographicMapSeriesHostDescription.$);
return GeographicXYTriangulatingSeriesDescription;
}(GeographicMapSeriesHostDescription));
export { GeographicXYTriangulatingSeriesDescription };