I am doing a timer using SfGauge as explained here https://www.syncfusion.com/kb/6620/how-to-use-a-circular-gauge-control-as-a-circular-progress-bar
For example I show countdown information in header as shown below and I would like to animate this in last 5 seconds. If I use label, I can achieve this as shown below but I cant figure out how to do this animation. Is it even possible?
<gauge:SfCircularGauge.Headers>
<gauge:Header x:Name="Timer" TextSize="85" ForegroundColor="Gray" Position="0.5,0.5">
</gauge:Header>
</gauge:SfCircularGauge.Headers>
Device.BeginInvokeOnMainThread(async () =>
{
if (1 < ts.TotalSeconds && ts.TotalSeconds < 6)
{
Timer.AnchorX = 0.48;
Timer.AnchorY = 0.48;
await Timer.ScaleTo(0.8, 50, Easing.Linear);
await Task.Delay(100);
await Timer.ScaleTo(1, 50, Easing.Linear);
}
});