rootPane.panes.orientation String
(default: "horizontal")
Specifies the orientation of a split pane. Supported values are "horizontal" and "vertical".
Example
<div style="height:500px; width:1000px">
<div id="dockmanager"></div>
</div>
<script>
$("#dockmanager").kendoDockManager({
rootPane: {
type: "split",
orientation: "vertical",
panes: [{
type: "content",
title: "Pane 1",
content: "Pane 1"
},{
type: "content",
title: "Pane 2",
content: "Pane 2"
}]
}
});
</script>