New to Telerik UI for ASP.NET Core? Download free 30-day trial

    Layout

    The RadioGroup supports two types of layout - "horizontal" and "vertical". By default the radio buttons are rendered vertically.

    The following example shows how to set the RadioGroup layout:

        @(Html.Kendo().RadioGroup()
            .Name("radiogroup")        
            .BindTo(new[] { "English", "German", "Italian", "Russian", "Spanish" })
            .Layout(RadioGroupLayout.Vertical)
            .Value("Italian")
        ) 
    In this article