Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Fix dendrogram #1063

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Oct 24, 2016
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
cartesian: look for subplot ids in fullData instead of data if present
- which is a more precise description than data,
  after than defaults step.
  • Loading branch information
etpinard committed Oct 20, 2016
commit faec7ba6d15df8517e0b37256310907c28c039ac
2 changes: 1 addition & 1 deletion 2 src/plots/cartesian/axes.js
Original file line number Diff line number Diff line change
Expand Up @@ -1207,7 +1207,7 @@ axes.getSubplots = function(gd, ax) {
var i, j, sp;

// look for subplots in the data
var data = gd.data || [];
var data = gd._fullData || gd.data || [];
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nonblocking, but do we even need gd.data here then?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I didn't want to break

image

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ah good call, forgot streambed might still be using this 👍


for(i = 0; i < data.length; i++) {
var trace = data[i];
Expand Down
2 changes: 1 addition & 1 deletion 2 src/plots/plots.js
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,7 @@ plots.linkSubplots = function(newFullData, newFullLayout, oldFullData, oldFullLa
newSubplots = newFullLayout._plots = {};

var mockGd = {
data: newFullData,
_fullData: newFullData,
_fullLayout: newFullLayout
};

Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.