I am creating a web app in which i want to show progress bar depend on the data from my sql server,
for example i am getting my data like(40) in my progress bar width of my progress bar sould be 40% and if my data is 70 width of my progress bar should be 70%
here is my static progress bar
<div class="progress">
<div class="progress-bar" role="progressbar" aria-valuenow="70"
aria-valuemin="0" aria-valuemax="100" style="width:70%">
<span class="sr-only">70% Complete</span>
</div>
</div>
i am using angularJS so, my data is coming in my controller,
what i need to do to make my progress bar dynamic