enable Boolean
(default: true)
If set to false
the widget will be disabled. It will still allow changing the value. The widget is enabled by default.
Example - disable the widget on initialization.
<div id="progressbar"></div>
<script>
$("#progressbar").kendoProgressBar({
enable: false
});
</script>