I have the xaml below data binding on the image inside the center button does not work. If I put the image outside the radial menu I get the expected image. I am using VS for Mac Pro 7.4 build 1033.
<sf:SfRadialMenu x:Name="radialMenu" CenterButtonRadius="100"
Closing="Handle_Closing" EnableRotation="false"
IsDragEnabled="false" IsOpen="true"
RimColor="Transparent" RimRadius="150" >
<sf:SfRadialMenu.CenterButtonView>
<Image Source="{Binding ProfileImageSource}" />
</sf:SfRadialMenu.CenterButtonView>
<sf:SfRadialMenu.Items>
<sf:SfRadialMenuItem FontSize="24" Text="+" />
<sf:SfRadialMenuItem FontSize="24" Text="+" />
<sf:SfRadialMenuItem FontSize="24" Text="+" />
<sf:SfRadialMenuItem FontSize="24" Text="+" />
<sf:SfRadialMenuItem FontSize="24" Text="+" />
<sf:SfRadialMenuItem FontSize="24" Text="+" />
<sf:SfRadialMenuItem FontSize="24" Text="+" />
<sf:SfRadialMenuItem FontSize="24" Text="+" />
</sf:SfRadialMenu.Items>
</sf:SfRadialMenu>