layout String (default: "vertical")

Specifies whether the radio buttons will be rendered one below the other ("vertical") or on the same line ("horizontal").

Example

<ul id="radiogroup"></ul>

<script>
    $("#radiogroup").kendoRadioGroup({
        items: [ "one", "two", "three" ],
        layout: "horizontal"
    });
</script>
In this article