UNPKG

igniteui-webcomponents-charts

Version:

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

26 lines (25 loc) 785 B
import { IgcSeriesViewerSelectedSeriesItemsChangedEventArgs } from "./igc-series-viewer-selected-series-items-changed-event-args"; import { ensureBool } from "igniteui-webcomponents-core"; /** * Provides data for the SelectedItemsChanging event. */ export class IgcSeriesViewerSelectedSeriesItemsChangingEventArgs extends IgcSeriesViewerSelectedSeriesItemsChangedEventArgs { /** * @hidden */ get i() { return this._implementation; } constructor() { super(); } /** * Set this to true in order to stop the SelectedItems collection from changing. */ get cancel() { return this.i.cancel; } set cancel(v) { this.i.cancel = ensureBool(v); } }