UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

86 lines (85 loc) 3.3 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 { GeographicXYTriangulatingSeriesDescription } from "./GeographicXYTriangulatingSeriesDescription"; import { markType } from "./type"; /** * @hidden */ var GeographicContourLineSeriesDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(GeographicContourLineSeriesDescription, _super); function GeographicContourLineSeriesDescription() { var _this = _super.call(this) || this; _this.fv = null; _this.fr = null; _this.fq = null; _this.fo = null; _this.fu = null; return _this; } GeographicContourLineSeriesDescription.prototype.get_type = function () { return "GeographicContourLineSeries"; }; Object.defineProperty(GeographicContourLineSeriesDescription.prototype, "valueMemberPath", { get: function () { return this.fv; }, set: function (a) { this.fv = a; this.j("ValueMemberPath"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicContourLineSeriesDescription.prototype, "fillScale", { get: function () { return this.fr; }, set: function (a) { this.fr = a; this.j("FillScale"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicContourLineSeriesDescription.prototype, "actualFillScale", { get: function () { return this.fq; }, set: function (a) { this.fq = a; this.j("ActualFillScale"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicContourLineSeriesDescription.prototype, "valueResolver", { get: function () { return this.fo; }, set: function (a) { this.fo = a; this.j("ValueResolver"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicContourLineSeriesDescription.prototype, "triangulationStatusChangedRef", { get: function () { return this.fu; }, set: function (a) { this.fu = a; this.j("TriangulationStatusChangedRef"); }, enumerable: false, configurable: true }); GeographicContourLineSeriesDescription.$t = markType(GeographicContourLineSeriesDescription, 'GeographicContourLineSeriesDescription', GeographicXYTriangulatingSeriesDescription.$); return GeographicContourLineSeriesDescription; }(GeographicXYTriangulatingSeriesDescription)); export { GeographicContourLineSeriesDescription };