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