Data Virtualization in Windows Forms DataGrid (SfDataGrid)

10 Jun 20211 minute to read

SfDataGrid provides support to handle the large amount of data through built-in virtualization features. With Data virtualization, SfDataGrid.View process the data in on-demand for better performance while loading large amount of data.
The large amount of data can be loaded in less time by setting SfDataGrid.EnableDataVirtualization property to true.

this.sfDataGrid1.EnableDataVirtualization = true;
Me.sfDataGrid1.EnableDataVirtualization = True

Limitations

  1. Data update using LiveDataUpdateMode is not supported.