Right-To-Left in Blazor RadioButton Component
4 Nov 20251 minute to read
The RadioButton component supports right-to-left (RTL) layout, Enable RTL by setting the EnableRtl as true.
The following example illustrates enabling right-to-left support in the RadioButton component. RTL can also be configured globally for all Syncfusion components during service registration.
@using Syncfusion.Blazor.Buttons
<SfRadioButton Label="Default" EnableRtl="true" Value="Default" @bind-Checked="stringChecked"></SfRadioButton>
@code {
private string stringChecked = "Default";
}