Browse Source

Changed log base 16 to log base 32, #452

Torkel Ödegaard 11 years ago
parent
commit
2ca86b6085
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/app/panels/graph/module.js

+ 1 - 1
src/app/panels/graph/module.js

@@ -116,7 +116,7 @@ function (angular, app, $, _, kbn, moment, TimeSeries, PanelMeta) {
     _.defaults($scope.panel.grid, _d.grid);
     _.defaults($scope.panel.legend, _d.legend);
 
-    $scope.logScales = {'linear': 1, 'log (base 16)': 16, 'log (base 10)': 10, 'log (base 1024)': 1024};
+    $scope.logScales = {'linear': 1, 'log (base 10)': 10, 'log (base 32)': 32, 'log (base 1024)': 1024};
 
     $scope.hiddenSeries = {};
     $scope.seriesList = [];