orientation String (default: "horizontal")

The orientation of the ProgressBar. Possible values are horizontal and vertical.

Example - specify vertical orientation for the ProgressBar

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