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
175
hiding a row taking a ton of processor
posted

I have an application where i need to hide rows in the UltraGrid based on certain values.  These grids i am working with are very large (up to 400k rows).  The performance has been awful, and I have isolated the problem to the following line:

r.Hidden = false;

This single line is taking on average about 1.6 seconds to execute.  The ultragrid i did these timings on had just over 13,000 rows.

Is this kind of performance expected?