layoutFlow String
(default: "vertical")
This option is used to specify the layout flow of the component. Can also be set to the following string values: vertical
or horizontal
.
Example - specify layout flow
<textarea id="description"></textarea>
<script>
$("#description").kendoTextArea({
layoutFlow: "horizontal"
})
</script>