UNPKG

igniteui-react-charts

Version:

Ignite UI React charting components for building rich data visualizations using TypeScript APIs.

71 lines (70 loc) 2.67 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 { EventArgs, markType } from "igniteui-react-core"; /** * @hidden */ var CustomContourValueResolverEventArgs = /** @class */ /*@__PURE__*/ (function (_super) { __extends(CustomContourValueResolverEventArgs, _super); function CustomContourValueResolverEventArgs(a) { var _this = _super.call(this) || this; _this._valueColumn = null; _this._contourValuesEnumerable = null; _this.b = null; _this.valueColumn = a; return _this; } Object.defineProperty(CustomContourValueResolverEventArgs.prototype, "valueColumn", { get: function () { return this._valueColumn; }, set: function (a) { this._valueColumn = a; }, enumerable: false, configurable: true }); Object.defineProperty(CustomContourValueResolverEventArgs.prototype, "contourValuesEnumerable", { get: function () { return this._contourValuesEnumerable; }, set: function (a) { this._contourValuesEnumerable = a; }, enumerable: false, configurable: true }); Object.defineProperty(CustomContourValueResolverEventArgs.prototype, "values", { get: function () { if (this.valueColumn == null) { return []; } return this.valueColumn.asArray(); }, enumerable: false, configurable: true }); Object.defineProperty(CustomContourValueResolverEventArgs.prototype, "contourValues", { get: function () { return this.b; }, set: function (a) { if (a == null) { this.contourValuesEnumerable = null; } else { this.contourValuesEnumerable = a; } }, enumerable: false, configurable: true }); CustomContourValueResolverEventArgs.$t = markType(CustomContourValueResolverEventArgs, 'CustomContourValueResolverEventArgs', EventArgs.$); return CustomContourValueResolverEventArgs; }(EventArgs)); export { CustomContourValueResolverEventArgs };