resizable.max.maxHeight Number

The maximum height that the editor can be resized to.

Example

<textarea id="editor"></textarea>
<script>
$("#editor").kendoEditor({
  resizable: {
    max: {
      maxHeight: 500
    }
  }
});
</script>
In this article