messageBox.maxTextAreaHeightNumber(default: 100)
The maximum height of the textarea in pixels. When set, the textarea will stop expanding and show a scrollbar.
Example
<div id="chat"></div>
<script>
$("#chat").kendoChat({
authorId: "user",
messageBox: {
mode: "auto",
maxTextAreaHeight: 150
}
});
</script>