orientation String (default: "horizontal")

Specifies the orientation of the widget. Supported values are "horizontal" and "vertical".

Example

<div id="splitter">
  <div>Pane A</div>
  <div>Pane B</div>
</div>
<script>
$("#splitter").kendoSplitter({
  orientation: "vertical"
});
</script>
In this article