Skip to content

Commit 0e186bc

Browse files
committed
init Fx when cartesian subplots are present
1 parent 3ad1021 commit 0e186bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/plots/cartesian/graph_interact.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ fx.isHoriz = function(fullData) {
7979
fx.init = function(gd) {
8080
var fullLayout = gd._fullLayout;
8181

82-
if(fullLayout._hasGL3D || fullLayout._hasGeo || gd._context.staticPlot) return;
82+
if(!fullLayout._hasCartesian || gd._context.staticPlot) return;
8383

8484
var subplots = Object.keys(fullLayout._plots || {}).sort(function(a,b) {
8585
// sort overlays last, then by x axis number, then y axis number

0 commit comments

Comments
 (0)