Skip to content

Commit

Permalink
fix issue 5262
Browse files Browse the repository at this point in the history
  • Loading branch information
archmoj committed Nov 13, 2020
1 parent 3ea0bb7 commit c7a23b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plots/cartesian/axes.js
Original file line number Diff line number Diff line change
Expand Up @@ -2061,7 +2061,7 @@ axes.drawOne = function(gd, ax, opts) {
tickVals = insideTicks ? valsClipped : boundaryVals;
} else {
valsClipped = axes.clipEnds(ax, vals);
tickVals = insideTicks ? valsClipped : vals;
tickVals = (insideTicks && ax.ticklabelmode !== 'period') ? valsClipped : vals;
}

var gridVals = ax._gridVals = valsClipped;
Expand Down

0 comments on commit c7a23b4

Please sign in to comment.