Thank you for using Syncfusion products.
At present there is no support for AlternativeRowStyle in SfDataGrid, however we consider your requirement as a Feature request. A support incident to track the status of this feature has been created under your account. Please log on to our support website to check for further updates.
https://www.syncfusion.com/account/login?ReturnUrl=%2fsupport%2fdirecttrac%2fincidents
Please let me know if you have any question.
Regards,
Prasanth
<sfGrid:SfDataGrid x:Name="dataGrid" ItemsSource="{Binding OrdersInfo}" HeaderRowHeight="70"> <sfGrid:SfDataGrid.Columns x:TypeArguments="sfgrid:Columns"> <sfGrid:GridTextColumn MappingName="PatientName"> <sfGrid:GridTextColumn.HeaderTemplate> <DataTemplate> <Label x:Name="PatientName" Text="Demo For Multi line Text in header" TextColor="Black" VerticalOptions="Fill" YAlign="Center" Align="Center" LineBreakMode="WordWrap" /> </DataTemplate> </sfGrid:GridTextColumn.HeaderTemplate> </sfGrid:GridTextColumn> </sfGrid:SfDataGrid.Columns>
|