value
Gets or sets the value of the component.
Note: The value should be a number between 0 and 100.
Example
<div id="progressbar"></div>
<script>
$("#progressbar").kendoCircularProgressBar({
value: 20
});
setTimeout(function(){
$("#progressbar").data("kendoCircularProgressBar").value(50);
},1000);
</script>