How to change animation speed in .NET MAUI Busy Indicator (SfBusyIndicator)?
In the .NET MAUI Busy Indicator, you can adjust the animation speed by using the DurationFactor property. Setting a smaller duration increases the animation speed. The property’s default value is 0.5, and the value ranges from 0 to 1.
XAML
<ContentPage.Content>
<busyIndicator:SfBusyIndicator x:Name="busyIndicator"
IsRunning="True"
Title="Searching..."
DurationFactor="0.4"/>
</ContentPage.Content>
C#
SfBusyIndicator busyIndicator = new SfBusyIndicator();
busyIndicator.IsRunning = true;
busyIndicator.Title = "Searching…";
busyIndicator.DurationFactor = 0.4;
OUTPUT
Conclusion
I hope you enjoyed learning how to change animation speed in the .NET MAUI Busy Indicator (SfBusyIndicator).
You can refer to our .NET MAUI Busy Indicator’s feature tour page to learn about its other groundbreaking feature representations. Explore our .NET MAUI Busy Indicator documentation to understand how to present and manipulate data.
For current customers, you can check out our .NET MAUI components from the License and Downloads page. If you are new to Syncfusion®, you can try our 30-day free trial to check out our .NET MAUI Busy Indicator and other .NET MAUI components.
If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!