UNPKG

igniteui-angular-charts

Version:

Ignite UI Angular charting components for building rich data visualizations for modern web apps.

34 lines (33 loc) 1.81 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 { SeriesViewerSelectedSeriesItemsChangedEventArgs } from "./SeriesViewerSelectedSeriesItemsChangedEventArgs"; import { markType } from "igniteui-angular-core"; /** * @hidden */ var SeriesViewerSelectedSeriesItemsChangingEventArgs = /** @class */ /*@__PURE__*/ (function (_super) { __extends(SeriesViewerSelectedSeriesItemsChangingEventArgs, _super); function SeriesViewerSelectedSeriesItemsChangingEventArgs(a, b, c) { var _this = _super.call(this, a, b, c) || this; _this._cancel = false; return _this; } Object.defineProperty(SeriesViewerSelectedSeriesItemsChangingEventArgs.prototype, "cancel", { get: function () { return this._cancel; }, set: function (a) { this._cancel = a; }, enumerable: false, configurable: true }); SeriesViewerSelectedSeriesItemsChangingEventArgs.$t = markType(SeriesViewerSelectedSeriesItemsChangingEventArgs, 'SeriesViewerSelectedSeriesItemsChangingEventArgs', SeriesViewerSelectedSeriesItemsChangedEventArgs.$); return SeriesViewerSelectedSeriesItemsChangingEventArgs; }(SeriesViewerSelectedSeriesItemsChangedEventArgs)); export { SeriesViewerSelectedSeriesItemsChangingEventArgs };