Before embarking on this project, I would like to know if it is even possible to cancel the progress bar found in the bootstrap framework so that it can display the value going from right to left? The reason for this question is that I have a series of numbers that can go from positive to negative. The idea is to position the two execution bars next to each other and have the correct indication of the percentage range when the value is positive, and the left bar displays the percentage range when the value is negative. So far, the values ββare static, but in the future they will "live."
Any input on this and, if possible, a pointer to similar projects? I really did not find anything suitable in this structure.
I watched posts like this one: Reverse progress bar using CSS3 , but I'm not sure if this will be the way to use Bootstrap. Is there any kind of overrides available for this kind of functions regarding css?
Now my progress bar is set up like this:
<li>Speed<span class="pull-right"><em>@Math.Round(DepthValue, 2) m/min</em></span> <div class="progress progress-success"> <div class="bar" style="width: @Model.SpeedRangePercentage%"></div> </div> </li>
source share