layout String (default: "vertical")

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

    Example

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