UNPKG

igniteui-webcomponents-charts

Version:

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

18 lines (17 loc) 841 B
import { IgcSeriesViewerSelectedSeriesItemsChangedEventArgs } from "./igc-series-viewer-selected-series-items-changed-event-args"; import { SeriesViewerSelectedSeriesItemsChangingEventArgs as SeriesViewerSelectedSeriesItemsChangingEventArgs_internal } from "./SeriesViewerSelectedSeriesItemsChangingEventArgs"; /** * Provides data for the SelectedItemsChanging event. */ export declare class IgcSeriesViewerSelectedSeriesItemsChangingEventArgs extends IgcSeriesViewerSelectedSeriesItemsChangedEventArgs { /** * @hidden */ get i(): SeriesViewerSelectedSeriesItemsChangingEventArgs_internal; constructor(); /** * Set this to true in order to stop the SelectedItems collection from changing. */ get cancel(): boolean; set cancel(v: boolean); }