Radzen Blazor DataGrid Is Slow with several columns

Hello, not only the first render of Radzen's Blazor DataGrid's is slow with large number of columns, its response to every action is also unnecessarily slow.
My hypothesis is that ShouldRender() method of the components hasn't been properly implemented..
.
Do you have any ideas why its so?

There is no such implementation at all - the source code is here and you can debug your case:

There are many example with many columns and the DataGrid is not slow, even with composite columns:

Thanks for your response.
But I'm surprised! how come you don't override ShouldRender() in the components. Without ShouldRender() overridden not only there is no point in V-DOM, it even makes it slower.
You should consider overriding ShouldRender() in all the components.
.
.
Best Regards

ShouldRender() should be overridden only in special cases like this one otherwise you might brake the component lifecycle.