10000 Implement scatter `cliponaxis: false` by etpinard · Pull Request #1824 · plotly/plotly.js · GitHub
[go: up one dir, main page]

Skip to content

Implement scatter cliponaxis: false #1824

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

Closed
wants to merge 10 commits into from
Prev Previous commit
Next Next commit
add handler for 'doplot' editType values in restyle
  • Loading branch information
etpinard committed Jun 27, 2017
commit ecf65dfa5ab54812ca36a12a4695dd1968822319
9 changes: 7 additions & 2 deletions src/plot_api/plot_api.js
Original file line number Diff line number Diff line change
Expand Up @@ -1635,8 +1635,13 @@ function _restyle(gd, aobj, _traces) {
}

// some attributes declare an 'editType' flaglist
if(valObject.editType === 'docalc') {
flags.docalc = true;
switch(valObject.editType) {
case 'docalc':
flags.docalc = true;
break;
case 'doplot':
flags.doplot = true;
break;
}

// all the other ones, just modify that one attribute
Expand Down
0