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