Utilizing the bootstrap progress bar to display the percentage of a person's miles covered out of a total of 23,872 miles.
Take user A as an example, they have covered only 5 miles:
5/23872 = 0.00020945 * 100 = 0.02094504 miles.
Currently, anything below 1% does not appear on the progress bar.
Is there a way to display the percentage of miles below 1% on the progress bar similar to the 28% shown in the image above but with a different color for example green?
Code for Conversion:
// Calculating Percentages for each region
var ukPercent = $scope.ukTotal / 23872;
var apacPercent = $scope.apacTotal / 23872;
var naPercent = $scope.naTotal / 23872;
$scope.ukPercentage = ukPercent * 100;
$scope.naPercentage = naPercent * 100;
$scope.apacPercentage = apacPercent * 100;