8000 Implement connectGaps by mikolalysenko · Pull Request #361 · plotly/plotly.js · GitHub
[go: up one dir, main page]

Skip to content

Implement connectGaps #361

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 8 commits into from
Apr 1, 2016
Merged
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
only coerce connectgaps if scatter3d has lines
  • Loading branch information
mikolalysenko committed Mar 31, 2016
commit 1b2072a8e294ba065810ed202e139e6bed3e9074
2 changes: 1 addition & 1 deletion src/traces/scatter3d/defaults.js
6720
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ module.exports = function supplyDefaults(traceIn, traceOut, defaultColor, layout

coerce('text');
coerce('mode');
coerce('connectgaps');

if(subTypes.hasLines(traceOut)) {
coerce('connectgaps');
handleLineDefaults(traceIn, traceOut, defaultColor, coerce);
}

Expand Down
0