Is there anyway to count an item, then display it outside of the loop?
value.total
You could always do this in your JS function.
$scope.values = data; angular.forEach($scope.values,function(value){ $scope.total += value.value; });
Working plunker: http://plnkr.co/edit/5WZ9alCXzq115wi3xl4B?p=preview