New to Telerik UI for ASP.NET Core? Start a free 30-day trial
Layout
Updated over 6 months ago
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:
Razor
@(Html.Kendo().RadioGroup()
.Name("radiogroup")
.BindTo(new[] { "English", "German", "Italian", "Russian", "Spanish" })
.Layout(RadioGroupLayout.Vertical)
.Value("Italian")
)