min Number
(default: 0)
The minimum value of the ProgressBar.
Example - specify the minimum value of the widget
<div id="progressbar"></div>
<script>
$("#progressbar").kendoProgressBar({
min: 10,
max: 50
});
</script>