I created a .net 6 blazor wasm project with this code in VS2022 preview 7, and my circular gauge is a blob (https://ibb.co/Rcd7pfV ) until I resize the window (https://ibb.co/K2mV1hD).
<h1>Hello, world!</h1>
<SfCircularGauge>
<CircularGaugeAxes>
<CircularGaugeAxis>
<CircularGaugePointers>
<CircularGaugePointer></CircularGaugePointer>
</CircularGaugePointers>
</CircularGaugeAxis>
</CircularGaugeAxes>
</SfCircularGauge>
Project file:
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="6.0.0-rc.2.21480.10" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="6.0.0-rc.2.21480.10" PrivateAssets="all" />
<PackageReference Include="Syncfusion.Blazor" Version="19.3.0.47" />
</ItemGroup>
</Project>
I have a real app doing the same thing. I've tried different onInit methods, but if this static sample doesn't work, I can't expect the more complex app to work.
Any ideas?
Ok. Thanks for the quick reply. Can you point me to a place where i can download it in the meantime?
Here is a sample from you guys today which does, on my pc, exactly what all my attempts do: it only renders/animates upon resizing the chrome browser window.
Here is your sample rendered on my pc:
https://www.youtube.com/watch?v=NCpzxmQYltw
Will do. Thanks for your prompt responses!