Observable Data Collections

 
Ticker Last Price Change % Change Last Updated
No data to display

You can bind our Blazor Grid to a data collection that implements the INotifyCollectionChanged or IBindingList interface. This collection notifies the Grid about relevant changes (when items are added or removed, when the entire collection is refreshed, etc). The Grid will update its data automatically to reflect appropriate changes.

Each item in the collection should also implement the INotifyPropertyChanged interface to notify the Grid when a property value is changed.

This demo illustrates real-time data update support within our Blazor Grid (when bound to the standard ObservableCollection<T>).

Note: The data used in this demo is for demonstration purposes only. The demo generates synthetic stock quote data.