UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

98 lines (97 loc) 3.54 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 { ScatterTriangulationSeriesDescription } from "./ScatterTriangulationSeriesDescription"; import { markType } from "./type"; /** * @hidden */ var ScatterContourSeriesDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(ScatterContourSeriesDescription, _super); function ScatterContourSeriesDescription() { var _this = _super.call(this) || this; _this.d3 = null; _this.d1 = null; _this.d2 = null; _this.dy = null; _this.dx = null; _this.dv = null; return _this; } ScatterContourSeriesDescription.prototype.get_type = function () { return "ScatterContourSeries"; }; Object.defineProperty(ScatterContourSeriesDescription.prototype, "valueMemberPath", { get: function () { return this.d3; }, set: function (a) { this.d3 = a; this.e("ValueMemberPath"); }, enumerable: false, configurable: true }); Object.defineProperty(ScatterContourSeriesDescription.prototype, "valueMemberAsLegendLabel", { get: function () { return this.d1; }, set: function (a) { this.d1 = a; this.e("ValueMemberAsLegendLabel"); }, enumerable: false, configurable: true }); Object.defineProperty(ScatterContourSeriesDescription.prototype, "valueMemberAsLegendUnit", { get: function () { return this.d2; }, set: function (a) { this.d2 = a; this.e("ValueMemberAsLegendUnit"); }, enumerable: false, configurable: true }); Object.defineProperty(ScatterContourSeriesDescription.prototype, "fillScale", { get: function () { return this.dy; }, set: function (a) { this.dy = a; this.e("FillScale"); }, enumerable: false, configurable: true }); Object.defineProperty(ScatterContourSeriesDescription.prototype, "actualFillScale", { get: function () { return this.dx; }, set: function (a) { this.dx = a; this.e("ActualFillScale"); }, enumerable: false, configurable: true }); Object.defineProperty(ScatterContourSeriesDescription.prototype, "valueResolver", { get: function () { return this.dv; }, set: function (a) { this.dv = a; this.e("ValueResolver"); }, enumerable: false, configurable: true }); ScatterContourSeriesDescription.$t = markType(ScatterContourSeriesDescription, 'ScatterContourSeriesDescription', ScatterTriangulationSeriesDescription.$); return ScatterContourSeriesDescription; }(ScatterTriangulationSeriesDescription)); export { ScatterContourSeriesDescription };