I'm sure this is something simple, but I have a simple radio button group that Mode is set to "SelectionMode.Single". However its not single-selecting. Here is my code. Any suggestions are appreciated.
<SfButtonGroup name="exportGroup" Mode="SelectionMode.Single">
<SfRadioButton Name="cbAsset" TChecked="string" Value="asset" Label="Assets" />
<SfRadioButton Name="cbEverything" TChecked="string" value="everything" Label="Entire Database" />
</SfButtonGroup>