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")
)