Skip to main content
A newer version of this page is available. .

Dashboard.DataSourceCollectionChanged Event

Occurs after the collection of data sources has been changed.

Namespace: DevExpress.DashboardCommon

Assembly: DevExpress.Dashboard.v18.2.Core.dll

Declaration

public event EventHandler<NotifyingCollectionChangedEventArgs<IDashboardDataSource>> DataSourceCollectionChanged

Event Data

The DataSourceCollectionChanged event's data class is NotifyingCollectionChangedEventArgs<IDashboardDataSource>. The following properties provide information specific to this event:

Property Description
AddedItems Gets items added to the NotifyingCollection<T>.
RemovedItems Gets items removed from the NotifyingCollection<T>.

Remarks

The DataSourceCollectionChanged event is raised after data sources are added to or removed from the Dashboard.DataSources collection.

See Also