Hi,
We have noticed what appears to be excessing CPU usage when using the SfSpinner and wondered if this is a bug or something we need to do differently.
What we are seeing is the CPU go up drastically when the spinner is visible (even when the page does nothing else). For example, when debugging, my total CPU usage could be around 20% but then toggle the Spinner to be visible and the CPU can go up to 90% (mostly Visual Studio). I don't even need to look at Task Manager because I can hear the fan kick in! This has happened in various versions including 18.4.35 and 19.0.1.55
This is the basic code to reproduce it by clicking the "Toggle Spinner" button:-
<div>
<button title="Toggle Spinner" @onclick="@( () => { spinning = !spinning; } )">Toggle Spinner</button>
</div>
<div>
<Syncfusion.Blazor.Spinner.SfSpinner Visible=@spinning />
</div>
@code {
bool spinning = false;
}