value Number
The underlying value of the ProgressBar. It should be a number or false
. Setting the value to false
will set the state of the ProgressBar to indeterminate.
Example - set the initial ProgressBar value
<div id="progressbar"></div>
<script>
$("#progressbar").kendoProgressBar({
min: 10,
max: 20,
value: 15
});
</script>