From dc7ad19f29ffda1feb4024c43e4fd468e61155e1 Mon Sep 17 00:00:00 2001 From: Evert Timberg Date: Fri, 22 Apr 2016 20:48:41 -0400 Subject: [PATCH] Support radar tooltip mode 'label' --- src/core/core.tooltip.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/core.tooltip.js b/src/core/core.tooltip.js index ddf78f62a..88fb9b122 100644 --- a/src/core/core.tooltip.js +++ b/src/core/core.tooltip.js @@ -250,7 +250,7 @@ module.exports = function(Chart) { datasetIndex: datasetIndex }); } - }, null, element._yScale.options.stacked); + }, null); helpers.each(this._active, function(active) { if (active) { @@ -259,10 +259,10 @@ module.exports = function(Chart) { backgroundColor: active._view.backgroundColor }); } - }, null, element._yScale.options.stacked); + }, null); tooltipPosition = this.getAveragePosition(this._active); - tooltipPosition.y = this._active[0]._yScale.getPixelForDecimal(0.5); + //tooltipPosition.y = this._active[0]._yScale.getPixelForDecimal(0.5); } // Build the Text Lines -- 2.47.3