layout String
(default: "vertical")
Specifies whether the checkboxes will be rendered one below the other ("vertical") or on the same line ("horizontal").
Example
<ul id="checkboxgroup"></ul>
<script>
$("#checkboxgroup").kendoCheckBoxGroup({
items: [ "one", "two", "three" ],
layout: "horizontal"
});
</script>