Skip to content

Commit

Permalink
Fix rank chart not working with more than 1000 data points.
Browse files Browse the repository at this point in the history
  • Loading branch information
bugdone committed Mar 5, 2017
1 parent d497cc1 commit 2fdd170
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/public/js/controllers.js
Original file line number Diff line number Diff line change
Expand Up @@ -640,7 +640,7 @@ hsboxControllers.controller('Player', function ($scope, $http, $routeParams, $ro
headerFormat: '',
useHTML: true}
},
series: [{name: 'Rank', data: null}]
series: [{name: 'Rank', data: null, turboThreshold: 0}]
};

filtersChanged($scope, $http);
Expand Down

0 comments on commit 2fdd170

Please sign in to comment.