I\'m new in Angularjs and I am trying to update the width of a progress bar when a value in my controller change.
I have something like:
You can write custom ng-style:
ng-style
10% Complete (warning)
and in controller:
$scope.percentageStyle = { width : $scope.getPercentage() + '%' };
Demo Fiddle