UNPKG

igniteui-webcomponents-charts

Version:

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

38 lines (37 loc) 1.53 kB
import { __extends } from "tslib"; import { IgcSeriesViewerSelectedSeriesItemsChangedEventArgs } from "./igc-series-viewer-selected-series-items-changed-event-args"; import { ensureBool } from "igniteui-webcomponents-core"; /** * Provides data for the SelectedItemsChanging event. */ var IgcSeriesViewerSelectedSeriesItemsChangingEventArgs = /** @class */ /*@__PURE__*/ (function (_super) { __extends(IgcSeriesViewerSelectedSeriesItemsChangingEventArgs, _super); function IgcSeriesViewerSelectedSeriesItemsChangingEventArgs() { return _super.call(this) || this; } Object.defineProperty(IgcSeriesViewerSelectedSeriesItemsChangingEventArgs.prototype, "i", { /** * @hidden */ get: function () { return this._implementation; }, enumerable: false, configurable: true }); Object.defineProperty(IgcSeriesViewerSelectedSeriesItemsChangingEventArgs.prototype, "cancel", { /** * Set this to true in order to stop the SelectedItems collection from changing. */ get: function () { return this.i.cancel; }, set: function (v) { this.i.cancel = ensureBool(v); }, enumerable: false, configurable: true }); return IgcSeriesViewerSelectedSeriesItemsChangingEventArgs; }(IgcSeriesViewerSelectedSeriesItemsChangedEventArgs)); export { IgcSeriesViewerSelectedSeriesItemsChangingEventArgs };