The Syncfusion® native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
Stefan
Since you''re the guru, i have a special question :
When i update the grid twice per second (only refreshing a few cells) the CPU is consuming 30%
How the GDI option affect the result ?
I can''t figure why it consumes so much CPU
Benje
ADAdministrator Syncfusion Team February 11, 2005 08:31 PM UTC
GDI won''t help much - this is just for getting the final bits of performance out of the grid.
Make sure you use the right methods to change data in the grid, e.g. use SetCellInfo instead of Model[row, col].CellValue.
One high performance sample is also the RefreshGrid. It replaces the volatile data container with an optimized version that relies less on GC for data where you don''t need thousands of rows. The OneTimeQueryCellInfo might also be of interest if you don''t need QueryCellInfo be called repeatedly.
Stefan
>Stefan
>
>Since you''re the guru, i have a special question :
>When i update the grid twice per second (only refreshing a few cells) the CPU is consuming 30%
>
>How the GDI option affect the result ?
>
>I can''t figure why it consumes so much CPU
>
>Benje