added single decimal to short y formater

This commit is contained in:
Torkel Ödegaard
2014-02-07 13:27:53 +01:00
parent 084e7e7d73
commit bd4b75f5d8

View File

@@ -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') {