diff --git a/src/core/core.scale.js b/src/core/core.scale.js index 596ccb0ea3b..ef13890e020 100644 --- a/src/core/core.scale.js +++ b/src/core/core.scale.js @@ -693,8 +693,10 @@ module.exports = function(Chart) { // apply same lineSpacing as calculated @ L#320 y += (tickFont.size * 1.5); } - } else { + } else if (!isNaN(itemToDraw.tx1)) { context.fillText(label, 0, 0); + } else { + context.fillText('', 0, 0); } context.restore(); }