Skip to content
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

Update sliders.md #2300

Merged
merged 1 commit into from
Apr 27, 2020
Merged
Changes from all commits
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
33 changes: 28 additions & 5 deletions doc/python/sliders.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ jupyter:
thumbnail: thumbnail/slider2017.gif
---

#### Simple Slider Control
Sliders can now be used in Plotly to change the data displayed or style of a plot!
### Simple Slider Control
Sliders can be used in Plotly to change the data displayed or style of a plot.

```python
import plotly.graph_objects as go
Expand All @@ -60,10 +60,11 @@ fig.data[10].visible = True
steps = []
for i in range(len(fig.data)):
step = dict(
method="restyle",
args=["visible", [False] * len(fig.data)],
method="update",
args=[{"visible": [False] * len(fig.data)},
{"title": "Slider switched to step: " + str(i)}], # layout attribute
)
step["args"][1][i] = True # Toggle i'th trace to "visible"
step["args"][0]["visible"][i] = True # Toggle i'th trace to "visible"
steps.append(step)

sliders = [dict(
Expand All @@ -80,5 +81,27 @@ fig.update_layout(
fig.show()
```

#### Methods
The method determines which [plotly.js function](https://plot.ly/javascript/plotlyjs-function-reference/) will be used to update the chart. Plotly can use several [updatemenu](https://plot.ly/python/reference/#layout-updatemenus-items-updatemenu-buttons-items-button-method) methods to add the slider:
- `"restyle"`: modify **data** attributes
- `"relayout"`: modify **layout** attributes
- `"update"`: modify **data and layout** attributes
- `"animate"`: start or pause an animation

### Sliders in Plotly Express
Plotly Express provide sliders, but with implicit animation. The animation can be ommited by removing `updatemenus` in the `layout`:

```python
import plotly.express as px

df = px.data.gapminder()
fig = px.scatter(df, x="gdpPercap", y="lifeExp", animation_frame="year", animation_group="country",
size="pop", color="continent", hover_name="country",
log_x=True, size_max=55, range_x=[100,100000], range_y=[25,90])

fig["layout"].pop("updatemenus") # optional, drop animation buttons
fig.show()
```

#### Reference
Check out https://plot.ly/python/reference/#layout-updatemenus for more information!