Commit ec6fae9e by Torkel Ödegaard

Merge pull request #183 from merc1031/master

round up maxDataPoints to nearest integer in request. graphite 0.9.x and...
parents 9de60a9a 7f5c6ca1
......@@ -230,7 +230,7 @@ function (angular, app, $, _, kbn, moment, timeSeries) {
$scope.updateTimeRange = function () {
$scope.range = filterSrv.timeRange();
$scope.rangeUnparsed = filterSrv.timeRange(false);
$scope.resolution = ($(window).width() * ($scope.panel.span / 12)) / 2;
$scope.resolution = Math.ceil(($(window).width() * ($scope.panel.span / 12)) / 2);
$scope.interval = '10m';
if ($scope.range) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment