14
Views
2
Comments
Solved
Text inside ProgressBar
Question

Hi all,

I want to show a text inside the progress bar.

I want to achieved this result:

Does anyone have this issue? Any solution?

Solution

Hi @Mario Sepulveda,

If you want this type of content inside the progress bar-


You have this option-

You can add your content here.

Hope this will help you.

Hi @Mario Sepulveda ,

Try this code in your stylesheet,

.osui-progress-bar__value:before { 
                    content: 'value' !important;
                    font-size: 6px;
                    display: flex;
                    align-items: center;
                    justify-content: center;

}

//Replace the content and the font size values respectively.

This above code will display the content value inside the progress (Step value) of the progress bar. This is how it looks. 

Hope it helps,
Nandhakumar S.

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.