Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6b61e34

Browse files
committedJan 30, 2020
fixup (add fallback for _axisMatchGroups)
1 parent 0230b73 commit 6b61e34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/plots/plots.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3167,7 +3167,7 @@ function setupAxisCategories(axList, fullData, fullLayout) {
31673167
}
31683168

31693169
// look into match groups for 'missing' axes
3170-
var matchGroups = fullLayout._axisMatchGroups;
3170+
var matchGroups = fullLayout._axisMatchGroups || [];
31713171
for(i = 0; i < matchGroups.length; i++) {
31723172
for(axId in matchGroups[i]) {
31733173
if(!axLookup[axId]) {

0 commit comments

Comments
 (0)
Please sign in to comment.