Right-To-Left in Blazor RadioButton Component
28 Sep 20231 minute to read
Radio Button component has RTL support. This can be achieved by setting EnableRtl as true
.
The following example illustrates how to enable right-to-left support in Radio Button component.
@using Syncfusion.Blazor.Buttons
<SfRadioButton Label="Default" EnableRtl="true" Value="Default" @bind-Checked="stringChecked"></SfRadioButton>
@code {
private string stringChecked = "Default";
}