type String
(default: "value")
Specifies the type of the ProgressBar. The supported types are value, percent and chunk.
Example - set the type of the ProgressBar
<div id="progressbar"></div>
<script>
$("#progressbar").kendoProgressBar({
type: "percent"
});
</script>