Hi Andrew,
Thank you for contacting Syncfusion support.
We have checked your reported query. We have provided the workaround solution for your requirement .In this sample, we have customized the RadioButton by using ondblclick attribute as demonstrated in the below code snippet
Index.razor
|
<div @ondblclick="Click">
<SfRadioButton Label="ON" Value="ON" @bind-Checked="Value"></SfRadioButton>
<SfRadioButton Label="OFF" Value="OFF" @bind-Checked="Value"></SfRadioButton>
</div>
@code {
private string Value = "ON";
private void Click()
{
Value = "";
}
}
|
For your reference, we have prepared a sample based on your requirement. Please check the below link.
Please check the above link and get back to us, if you need further assistance.
Regards,
Gayathri K