The Igb grid docs say this about virualization:it is also possible to explicitly set the IgbGrid's Width and/or Height to null which means that the related dimension will be determined by the total size of the items inside. No scrollbar will then be shown
IgbGrid
Width
Height
null
I'd like a grid that displays at full height of all tje rows without a scrollbar. Using code similar to the following, I haven't been able to get that to work. Instead, the grid has the 100% height css styles and a scrollbar.
<IgbGrid AutoGenerate="false" Data="Data" Height="@null">
//columns
</IgbGrid>