added single decimal to short y formater

pull/76/head
Torkel Ödegaard 12 years ago
parent 084e7e7d73
commit bd4b75f5d8
  1. 2
      src/app/directives/grafanaGraph.js

@ -247,7 +247,7 @@ function (angular, $, kbn, moment, _) {
}
if (format === 'short') {
axis.tickFormatter = function(val) {
return kbn.shortFormat(val,0);
return kbn.shortFormat(val, 1);
};
}
if (format === 'ms') {

Loading…
Cancel
Save