Layout
The RadioGroup widget 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:
<ul id="radiogroup"></ul>
<script>
$("#radiogroup").kendoRadioGroup({
items: [ "Blue", "Green", "Red" ],
layout: "horizontal"
});
</script>