I am trying to make a progress bar with ng-style. The problem is that, when I make it, the progress slider goes only by middle, and does not cover the whole bar. The progress bar should be in hours, like: 4h, 5h etc. When I make it with %, it works. could any one help?
This is my code:
<div class="progress-bar progress-bar-slider">
<input class="progress-slider" type="range" min="4" max="12"
ng-model="workingHoursSelectedRange">
<div class="inner" ng-style="{width: workingHoursSelectedRange + '%' }"></div>
</div>
jsfiddle: https://jsfiddle.net/f6h32sfx/
Try This it will help you
The DEMO