Skip to content

Commit 92281af

Browse files
Fix validation for redraw
1 parent 262141b commit 92281af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/plots/cartesian/axes.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2297,7 +2297,7 @@ axes.draw = function(gd, arg, opts) {
22972297
var plotinfo = fullLayout._plots[id];
22982298
if(plotinfo) {
22992299
var ya = plotinfo.yaxis;
2300-
if(ya.overlaying === arg[0]) {
2300+
if(ya.tickmode === 'sync' && ya.overlaying === arg[0]) {
23012301
arg.push(ya._id);
23022302
}
23032303
}

0 commit comments

Comments
 (0)