Hi Jonah,
Greetings from Syncfusion.
Query: Word Wrap In Data But Not Header
We have validated your query and you want to wrap the cell content of the Grid content area only(not wrap the header area). You can set WrapMode as Content in GridTextWrapSettings. Find the below documentation for your reference.
Reference:
|
@using Syncfusion.Blazor.Grids
<SfGrid DataSource="@Orders" GridLines="GridLine.Default" AllowTextWrap="true" Height="315">
<GridTextWrapSettings WrapMode="WrapMode.Content"></GridTextWrapSettings>
<GridColumns>
. . .
</GridColumns>
</SfGrid>
@code{
public List<Order> Orders { get; set; }
. . .
} |
Please let us know if you have any concerns.
Regards,
Rahul