I have a blazor server razor page. That page iterates the list with a Radzen progress bar like this:
<Radzen.Blazor.RadzenProgressBar style="height:20px;width:400px;color:darkorchid " ProgressBarStyle=Radzen.ProgressBarStyle.Info Value="@LaterUsePercent" Unit="@item.BlocksCompleted"></Radzen.Blazor.RadzenProgressBar>
But this just gives me red squiggles when I try to insert into the radzen grid... how should it be inserted ?
<RadzenDataGridColumn TItem="CurrentTest" Property="LaterUsePercent" Title="% Complete">
<Radzen.Blazor.RadzenProgressBar style="height:20px;width:400px;color:darkorchid " ProgressBarStyle=Radzen.ProgressBarStyle.Info Value="@LaterUsePercent" Unit="@item.BlocksCompleted"></Radzen.Blazor.RadzenProgressBar>
</RadzenDataGridColumn>
Thanks !