Hi Will Autio,
Greetings from Syncfusion.
Query: "What range can the value of BusyIndicator Duration take?".
We have validated the reported query and in our current implementation, we don’t provide support for Duration property in Forms.UWP but you can achieve this by using CustomRenderer with AnimationSpeed property. Please have the sample and code snippet for your reference.
Code Snippet:
public class CustomBusyIndicatorRenderer : SfBusyIndicatorRenderer
{
protected override void OnElementChanged(ElementChangedEventArgs<SfBusyIndicator> e)
{
base.OnElementChanged(e);
if (Control != null)
{
Control.AnimationSpeed = 200;
}
}
}
|
Please let us know if you have any other concern.
Thanks,
Mugundhan S.