diff --git a/src/app/components/timeSeries.js b/src/app/components/timeSeries.js
index b05e9333364..2d1f918c5bf 100644
--- a/src/app/components/timeSeries.js
+++ b/src/app/components/timeSeries.js
@@ -5,15 +5,11 @@ define([
function (_, kbn) {
'use strict';
- function defaultValueFormater(value) {
- return kbn.valueFormats.none(value, 2, 2);
- }
-
function TimeSeries(opts) {
this.datapoints = opts.datapoints;
this.info = opts.info;
this.label = opts.info.alias;
- this.valueFormater = defaultValueFormater;
+ this.valueFormater = kbn.valueFormats.none;
}
function matchSeriesOverride(aliasOrRegex, seriesAlias) {
@@ -113,14 +109,19 @@ function (_, kbn) {
};
TimeSeries.prototype.updateLegendValues = function(formater, decimals, scaledDecimals) {
- this.valueFormater = function(value) {
- return formater(value, decimals, scaledDecimals);
- };
- this.info.avg = this.valueFormater(this.info.avg);
- this.info.current = this.valueFormater(this.info.current);
- this.info.min = this.valueFormater(this.info.min);
- this.info.max = this.valueFormater(this.info.max);
- this.info.total = this.valueFormater(this.info.total);
+ this.valueFormater = formater;
+ this.decimals = decimals;
+ this.scaledDecimals = scaledDecimals;
+
+ this.info.avg = this.formatValue(this.info.avg);
+ this.info.current = this.formatValue(this.info.current);
+ this.info.min = this.formatValue(this.info.min);
+ this.info.max = this.formatValue(this.info.max);
+ this.info.total = this.formatValue(this.info.total);
+ };
+
+ TimeSeries.prototype.formatValue = function(value) {
+ return this.valueFormater(value, this.decimals, this.scaledDecimals);
};
return TimeSeries;
diff --git a/src/app/directives/grafanaGraph.js b/src/app/directives/grafanaGraph.js
index a267255a540..97d5bb6aebd 100755
--- a/src/app/directives/grafanaGraph.js
+++ b/src/app/directives/grafanaGraph.js
@@ -105,7 +105,6 @@ function (angular, $, kbn, moment, _, GraphTooltip) {
function updateLegendValues(plot) {
var yaxis = plot.getYAxes();
- console.log("value");
for (var i = 0; i < data.length; i++) {
var series = data[i];
@@ -113,7 +112,6 @@ function (angular, $, kbn, moment, _, GraphTooltip) {
var formater = kbn.valueFormats[scope.panel.y_formats[series.yaxis - 1]];
series.updateLegendValues(formater, axis.tickDecimals, axis.scaledDecimals);
}
-
}
// Function for rendering panel
@@ -417,7 +415,9 @@ function (angular, $, kbn, moment, _, GraphTooltip) {
elem.html('');
}
- new GraphTooltip(elem, dashboard, scope);
+ new GraphTooltip(elem, dashboard, scope, function() {
+ return data;
+ });
elem.bind("plotselected", function (event, ranges) {
scope.$apply(function() {
diff --git a/src/app/directives/grafanaGraph.tooltip.js b/src/app/directives/grafanaGraph.tooltip.js
index 6d10fbb89c0..3e263a392de 100644
--- a/src/app/directives/grafanaGraph.tooltip.js
+++ b/src/app/directives/grafanaGraph.tooltip.js
@@ -4,7 +4,7 @@ define([
function ($) {
'use strict';
- function GraphTooltip(elem, dashboard, scope) {
+ function GraphTooltip(elem, dashboard, scope, getSeriesFn) {
var self = this;
var $tooltip = $('