diff --git a/src/plugins/plugin.tooltip.js b/src/plugins/plugin.tooltip.js index b39681ce2ca..a061aacfc76 100644 --- a/src/plugins/plugin.tooltip.js +++ b/src/plugins/plugin.tooltip.js @@ -38,10 +38,10 @@ const positioners = { } } - // No visible items where found, return false so we don't have to divide by 0 which reduces in NaN - if (count === 0 || xSet.size === 0) { - return false; - } + // // No visible items where found, return false so we don't have to divide by 0 which reduces in NaN + // if (count === 0 || xSet.size === 0) { + // return false; + // } const xAverage = [...xSet].reduce((a, b) => a + b) / xSet.size;