Is it possible to disable the behavior where hovering over an unchecked radio button causes the circle to change to black if the unchecked color is set to something else like light gray?
Sample Code:
<buttons:SfRadioButton Grid.Row="1"
Text="Checked Radio Button"
IsChecked="True"
TextColor="Black"
UncheckedColor="LightGray" />
<buttons:SfRadioButton Grid.Row="1"
Grid.Column="2"
Text="Unchecked Radio Button"
TextColor="Black"
UncheckedColor="LightGray"
IsChecked="False" />