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);