From 4b540e70cf6af3d58840db1c331d4bfb90f21a2b Mon Sep 17 00:00:00 2001 From: Adileo Barone Date: Mon, 16 May 2016 21:02:57 +0200 Subject: [PATCH] Fixed tooltip not showing in NULL datapoint in multi line chart --- src/core/core.tooltip.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/core.tooltip.js b/src/core/core.tooltip.js index 38ec6eac9..44ceee7c4 100644 --- a/src/core/core.tooltip.js +++ b/src/core/core.tooltip.js @@ -197,7 +197,7 @@ module.exports = function(Chart) { var yPositions = []; helpers.each(elements, function(el) { - if (el) { + if (el && el.hasValue()){ var pos = el.tooltipPosition(); xPositions.push(pos.x); yPositions.push(pos.y); -- 2.47.2