UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

98 lines (97 loc) 3.77 kB
/* 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.fd = null; _this.fc = null; _this.fe = null; _this.ff = null; _this.fg = null; _this.fh = null; return _this; } GeographicXYTriangulatingSeriesDescription.prototype.get_type = function () { return "GeographicXYTriangulatingSeries"; }; Object.defineProperty(GeographicXYTriangulatingSeriesDescription.prototype, "longitudeMemberPath", { get: function () { return this.fd; }, set: function (a) { this.fd = a; this.j("LongitudeMemberPath"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicXYTriangulatingSeriesDescription.prototype, "latitudeMemberPath", { get: function () { return this.fc; }, set: function (a) { this.fc = a; this.j("LatitudeMemberPath"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicXYTriangulatingSeriesDescription.prototype, "trianglesSourceRef", { get: function () { return this.fe; }, set: function (a) { this.fe = a; this.j("TrianglesSourceRef"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicXYTriangulatingSeriesDescription.prototype, "triangleVertexMemberPath1", { get: function () { return this.ff; }, set: function (a) { this.ff = a; this.j("TriangleVertexMemberPath1"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicXYTriangulatingSeriesDescription.prototype, "triangleVertexMemberPath2", { get: function () { return this.fg; }, set: function (a) { this.fg = a; this.j("TriangleVertexMemberPath2"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicXYTriangulatingSeriesDescription.prototype, "triangleVertexMemberPath3", { get: function () { return this.fh; }, set: function (a) { this.fh = a; this.j("TriangleVertexMemberPath3"); }, enumerable: false, configurable: true }); GeographicXYTriangulatingSeriesDescription.$t = markType(GeographicXYTriangulatingSeriesDescription, 'GeographicXYTriangulatingSeriesDescription', GeographicMapSeriesHostDescription.$); return GeographicXYTriangulatingSeriesDescription; }(GeographicMapSeriesHostDescription)); export { GeographicXYTriangulatingSeriesDescription };