Grid column title - force linechange

Hi,

I would like to force my headings on my radzengrid to be two lines instead of one

like:

<RadzenGridColumn TItem="Debitor" Property="id" Title="headline1 <br> headline2 " /> 

Is that possible ?

Best
Claus

1 Like

You can try using the HeaderTemplate of the RadzenGridColumn:

<RadzenGridColumn TItem="Debitor" Property="id">
     <HeaderTemplate>
        headline1 <br> headline2 
     </HeaderTemplate>
</RadzenGridColumn>
2 Likes

Hi,

Thanks that worked nicely :slight_smile:

Best Claus