I would like to use a single letter as the Value in a Radzen Select Bar.
How can I do that?
When the value is a letter, I get the error "The name 'x' Does not exist in the current context.
Here is the code.
<RadzenSelectBar TValue="string" Size="ButtonSize.Small" @bind-Value="@Gender">
<Items>
<RadzenSelectBarItem Value="M" Text="Male" />
<RadzenSelectBarItem Value="F" Text="Female" />
<RadzenSelectBarItem Value="X" Text="TBA" />
</Items>
</RadzenSelectBar>