maxRowsNumber(default: null)
The maximum number of visible rows to which the textarea can auto-resize. Used in combination with resize: "auto".
Example - specify maxRows
<textarea id="description"></textarea>
<script>
$("#description").kendoTextArea({
resize: "auto",
maxRows: 5
})
</script>
In this article