minWidth Number
(default: 50)
The minimum width (in pixels) that may be achieved by resizing the dialog.
Example
<div id="dialog"></div>
<script>
$("#dialog").kendoDialog({
title: "Kendo Dialog Component",
content: "This is your Kendo Dialog.",
minWidth: 100
});
</script>