progressWrapper jQuery

The jQuery object which represents the progress wrapper. This object could be empty if the progress has not started yet and the value is equal to the minimum value.

Example - set custom styles to the progress wrapper

<div id="progressbar"></div>
<script>
  $("#progressbar").kendoProgressBar({
    change: function(e) {
      this.progressWrapper.css({
        "background-color": "#EE9F05",
        "border-color": "#EE9F05"
      });
    }
  });

  $("#progressbar").data("kendoProgressBar").value(10);
</script>
In this article