We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 448db40 commit a20bbf9Copy full SHA for a20bbf9
shelly/plotlyjs/static/plotlyjs/src/graph_interact.js
@@ -78,7 +78,7 @@ fx.init = function(gd) {
78
79
if(fullLayout._hasGL3D || fullLayout._hasGeo || gd._context.staticPlot) return;
80
81
- var subplots = Object.keys(fullLayout._plots).sort(function(a,b) {
+ var subplots = Object.keys(fullLayout._plots || {}).sort(function(a,b) {
82
// sort overlays last, then by x axis number, then y axis number
83
if( (fullLayout._plots[a].mainplot && true) ===
84
(fullLayout._plots[b].mainplot && true) ) {
0 commit comments