I am trying to put a text like "Like + Comment", but the text is not ok.
How do i fit the content ?
I expect that the text was like "Like + jumping the line.
Comment"
<radialMenu:SfRadialMenu x:Name="radialMenu" CenterButtonRadius="35" RimColor="Transparent" RimRadius="100" CenterButtonBackgroundColor="Transparent" CenterButtonBorderColor="Transparent" CenterButtonBorderThickness="3">
<radialMenu:SfRadialMenu.CenterButtonView>
<Image x:Name="centerButtonImage" HeightRequest="30" WidthRequest="30" Source="btnInstagram.png" Aspect="AspectFill" />
</radialMenu:SfRadialMenu.CenterButtonView>
<radialMenu:SfRadialMenu.Items>
<radialMenu:SfRadialMenuItem Text="Comment" FontSize="14" ItemHeight="50" ItemWidth="65" TextColor="Red" FontAttributes="Bold">
</radialMenu:SfRadialMenuItem>
<radialMenu:SfRadialMenuItem Text="Like" FontSize="14" ItemHeight="50" ItemWidth="65" TextColor="Red" FontAttributes="Bold">
</radialMenu:SfRadialMenuItem>
<radialMenu:SfRadialMenuItem Text="Like + Comment" FontSize="14" ItemHeight="80" ItemWidth="70" TextColor="Red" FontAttributes="Bold">
</radialMenu:SfRadialMenuItem>
</radialMenu:SfRadialMenu.Items>
</radialMenu:SfRadialMenu>