As the sample Provided in this
Sample I'm trying to make the List view Horizontal and take the Group Header Template label rotation into 270, the template code as bellow
<syncfusion:SfListView.GroupHeaderTemplate>
<DataTemplate>
<ViewCell>
<ViewCell.View>
<Grid BackgroundColor="#808080">
<Label Text="{Binding Key}"
FontSize="15"
TextColor="White"
HorizontalTextAlignment="Center"
VerticalTextAlignment="Center"
Rotation="270"
HorizontalOptions="CenterAndExpand"
LineBreakMode="NoWrap"
VerticalOptions="CenterAndExpand" />
</Grid>
</ViewCell.View>
</ViewCell>
</DataTemplate>
</syncfusion:SfListView.GroupHeaderTemplate>
but the result is not lining up correctly as required, group header text is breaking, I tried, in this sample as well as my original project also, the result is same, please can you give me some guidance for this problem,
