Grid Column Title Multiple Lines Of Text

How can i break title in 2 lines?
exmaple:
Linked
Quotation
<RadzenDataGridColumn Frozen="true" Width="50px" TItem="OfferListItemDto" Property="" Title="Linked Quotation">
image

Hi @letoncse,

You can use the HeaderTemplate:

<RadzenDataGridColumn TItem="Employee" Property="FirstName" Title="First Name" Frozen="true" Width="160px">
  <HeaderTemplate>
     First<br>Name
  </HeaderTemplate>
</RadzenDataGridColumn>

image

1 Like

Thank you so much!:shamrock: