function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
VJ_SFDCVJ_SFDC 

I don't see Vertical Progress bar in salesforce lightnin

Any Idea about this in salesforce lighting and I got this link and I could see something horizontal but no syntax for vertical and I found only one and it is not allowing more that one value

https://www.lightningdesignsystem.com/components/slider/

Attached is the progress bar, I am trying to implement. In case if lighting doesn't support similar progress bar do I need to use jquery animation or need to develop an image.

User-added image
sfdcMonkey.comsfdcMonkey.com
hi VJ_SFDC 

Not like same but you can use progress indicator in lightning component please refer the below link :
https://developer.salesforce.com/docs/atlas.en-us.lightning.meta/lightning/aura_compref_lightning_progressIndicator.htm?search_text=progress

sample code :
support with API 41 and above
<lightning:progressIndicator currentStep="step2">
        <lightning:progressStep label="Step One" value="step1"/>
        <lightning:progressStep label="Step Two" value="step2"/>
        <lightning:progressStep label="Step Three" value="step3"/>
        <lightning:progressStep label="Step Three" value="step4"/>
        <lightning:progressStep label="Step Three" value="step5"/>
    </lightning:progressIndicator>


its look like below :
User-added image

Let us know if it helps you, and kindly mark it best answer it this answer helps you so it make proper solution for others in future 
thanks