Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
40
Displaying dynamic data
posted

Hi,

I'm looking for recommendations / documentation on how to use the grid to display dynamically changing data? For example, I have a requirement to show a grid of 100+ rows and ~10 columns where the value in each cell can change potentially change many times per second. However, from a user perspective it will be acceptable to update the visible cells once per second (if the data has changed). I'd also like to provide a visual indication for the cells that have changed values in the latest update (for example, by changing the background color of the cell for half a second).

(The grid actually needs to display ticking market data for all the equity stocks within a particular index (S&P, FTSE, etc.))

 

Cheers,

Dave.

Parents
No Data
Reply
  • 375
    posted

    Hi,

    how do you using the source data. If you will use a DataTable as DataSource and make changes to the DataTable the grid will be showing the changes automatically. It also will work if you will use a List<T> or a BindingList<T> and each object in the list is implementing the INotifyPropertyChanged interface.

    For the second requiremend I have no solution or tip for you I am sorry.

Children