Kendo UI - Progress Bar - Orientation

780 Views Asked by At

I am working with the Kendo UI Progress Bar.

I need to use a vertical progress bar to illustrate a users progress as they complete the form.

My progress bar is as follows:

 var pb = $("#profileCompleteness").kendoProgressBar({
                type: "chunk",
                chunkCount: xChunkCount,
                min: 0,
                max: xChunkCount,
                value: 0,
                orientation: "vertical"
            }).data("kendoProgressBar");

I'm having one issue at this point. The progress bar increments/chunks from bottom to top. I need it to increment/chunk from top to bottom.

Does anyone know if there is a way to flip the vertical orientation?

Thanks,

1

There are 1 best solutions below

1
On BEST ANSWER

You can check the "reverse" option of the widget: