Right-To-Left

17 Feb 20221 minute to read

RadioButton 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 RadioButton component.

<ejs-radiobutton id="radio1" label="Default" name="default" enableRtl="true"></ejs-radiobutton>
public ActionResult Rtl()
{
    return View();
}