chunkCount Number (default: 5)

Specifies the number of chunks.

Important This property is applicable only when the type of the ProgressBar is set to chunk.

Example - specify the number of chunks

<div id="progressbar"></div>
<script>
  $("#progressbar").kendoProgressBar({
    type: "chunk",
    chunkCount: 10
  });
</script>
In this article