.NET MAUI TreeDataGrid Row Height
The Telerik UI for .NET MAUI TreeDataGrid provides full control over the way the content is accommodated inside the DataGrid by enabling you to manually set the height of its rows.
By default, the row height is calculated according to the cell content.
To set the row height, apply the RowHeight
property of type double
to the TreeDataGrid instance.
<telerik:RadTreeDataGrid x:Name="treeDataGrid"
RowHeight="50"
ItemsSource="{Binding Source}" />