For the current project I need a datagrid with smaller rows, which fit precisely around the template. I can do this with the RowHeight property. However, I also have some cells with multiline text, where the rows need to be larger. I can do this by setting the RowHeight to NaN, but this also means the rowheight otherwise uses the default value of 48, while I need it to default to 20. Is there any good way to do this? I already tried setting TelerikGrid_RowHeight to 20 in the local resource dictionary (merged into the app resource dictionary), but this doesn't seem to fix it.
The template columns contain the following template:
$$"""<DataTemplate xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<TextBlock Text="{Binding [{{dataColumn}}]}"
Margin="4,0"
VerticalAlignment="Center"/>
</DataTemplate>"""