Skip to content

doubleClickDelay.py #157

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
Nov 15, 2019
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
Edit in chart studio button in modebar
  • Loading branch information
“mahdis-z” committed Oct 29, 2019
commit eeb65d587a6e9e276d2440801001e607bed99797
12 changes: 12 additions & 0 deletions python/configuration-options.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,18 @@ fig.update_layout(xaxis = {'type': 'date'})
fig.show(config = {'doubleClickDelay': 1000})
```

### `Edit in Chart Studio` Modebar Button
Copy link
Contributor

Choose a reason for hiding this comment

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

Could you please remove this paragraph and keep only the one with double click delay? The edit in chart studio in the modebar is really a minor feature that should not be documented here


```python
import plotly.graph_objects as go

fig = go.Figure(go.Scatter(y = [1, 2, 1, 3, 4, 2]))

fig.update_layout()

fig.show(config = {'showEditInChartStudio': True})
```

#### Reference


Expand Down