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

Resizable.min

configuration

The minimum height that the editor can be resized to. If set to an object the user can restrict both min width and height values.

resizable.min

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

The minimum height that the editor can be resized to.

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

The minimum width that the editor can be resized to.

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