resizable.max Number|Object
The maximum height that the editor can be resized to. If set to an object the user can restrict both max width and height values.
Example
<textarea id="editor"></textarea>
<script>
$("#editor").kendoEditor({
resizable: {
max: 600
}
});
</script>