New to Kendo UI for jQueryStart a free 30-day trial

Resizable.max

configuration

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.

resizable.max

Number|Object
<textarea id="editor"></textarea>
<script>
$("#editor").kendoEditor({
  resizable: {
    max: 600
  }
});
</script>

The maximum height that the editor can be resized to.

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

The maximum width that the editor can be resized to.

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