animation Boolean|Object

Configures the progress animation. Currently only the duration of the animation could be set.

Example - specify the duration of the progress animation

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

Example - disable the progress animation

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