diff --git a/src/core/core.scale.js b/src/core/core.scale.js index 9861288cd..7b1e8e92a 100644 --- a/src/core/core.scale.js +++ b/src/core/core.scale.js @@ -530,7 +530,7 @@ module.exports = function(Chart) { var isLastTick = this.ticks.length === index + 1; // Since we always show the last tick,we need may need to hide the last shown one before - var shouldSkip = (skipRatio > 1 && index % skipRatio > 0) || (index % skipRatio === 0 && index + skipRatio > this.ticks.length); + var shouldSkip = (skipRatio > 1 && index % skipRatio > 0) || (index % skipRatio === 0 && index + skipRatio >= this.ticks.length); if (shouldSkip && !isLastTick || (label === undefined || label === null)) { return; }