I want to set LabelFontSize depend on gauge size. Something like that:
<sf:Scale LabelFontSize="{Binding Source={x:Reference MyCircularGauge}, Path=Diameter, Converter={converters:ValueTimesParameterConverter}, ConverterParameter='0.044'}">
Is there a way to get gauge diameter or radius? I can use Height property, but it not works perfect, because actual Diameter is Min(Height, Width). I tried to create extended SfCircularGauge class with new property exposed, but it doesn't render well, I guess because of lack of platform renderer.
Could you advice me any solution?