resizable.min.minWidth Number

The minimum width that the editor can be resized to.

Example

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