animation.duration Number (default: 400)

The duration of each progress animation in milliseconds.

Example - specify the duration of the progress animation

<div id="progressbar"></div>
<script>
  $("#progressbar").kendoProgressBar({
    animation: {
      duration: 800
    }
  });
</script>
In this article