Blazor - RadzenDataGrid row height

I've seen a few articles about this but they are all a bit cryptic, in simple terms what must I put in a Blazor Server pages so that a RadzenDataGrid can have its rows made thinner?

Are there no plans to add a RowHeight to the data grid itself at some point in the future?

All you need is to set simple CSS in your page:

.rz-data-row {
    height: 80px;
}

We have implemented a new feature in Radzen.Blazor 4.1.6 which allows you to make RadzenDataGrid compact.

<RadzenDataGrid Density="Density.Compact" ...>