resizable.max.maxWidthNumber
The maximum width that the editor can be resized to.
Example
<textarea id="editor"></textarea>
<script>
$("#editor").kendoEditor({
resizable: {
max: {
maxWidth: 500
}
}
});
</script>
In this article