Suppose you need to adjust the values for the entire range, in your case: for 0 and 1:
$scope.exampleData = [ { "key": "Monto Inicial", "values": [[0, $scope.planAhorro.MontoInicial], [1, 0]], "color": "red" }, { "key": "Monto Periodico", "values": [[0, $scope.planAhorro.MontoPeriodico], [1, 0]], "color": "green" }, { "key": "Total Sueños", "values": [[0, ], [1, $scope.planAhorro.Valor]], "color": "#0000FF"
Here is a demo , but I'm using angular-nvd3 .
source share