Skip to content

Commit b0bdcf0

Browse files
Merge pull request #2300 from SylwiaOliwia2/patch-8
Update sliders.md
2 parents a85da05 + fac982d commit b0bdcf0

File tree

1 file changed

+28
-5
lines changed

1 file changed

+28
-5
lines changed

doc/python/sliders.md

+28-5
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ jupyter:
3333
thumbnail: thumbnail/slider2017.gif
3434
---
3535

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

3939
```python
4040
import plotly.graph_objects as go
@@ -60,10 +60,11 @@ fig.data[10].visible = True
6060
steps = []
6161
for i in range(len(fig.data)):
6262
step = dict(
63-
method="restyle",
64-
args=["visible", [False] * len(fig.data)],
63+
method="update",
64+
args=[{"visible": [False] * len(fig.data)},
65+
{"title": "Slider switched to step: " + str(i)}], # layout attribute
6566
)
66-
step["args"][1][i] = True # Toggle i'th trace to "visible"
67+
step["args"][0]["visible"][i] = True # Toggle i'th trace to "visible"
6768
steps.append(step)
6869

6970
sliders = [dict(
@@ -80,5 +81,27 @@ fig.update_layout(
8081
fig.show()
8182
```
8283

84+
#### Methods
85+
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:
86+
- `"restyle"`: modify **data** attributes
87+
- `"relayout"`: modify **layout** attributes
88+
- `"update"`: modify **data and layout** attributes
89+
- `"animate"`: start or pause an animation
90+
91+
### Sliders in Plotly Express
92+
Plotly Express provide sliders, but with implicit animation. The animation can be ommited by removing `updatemenus` in the `layout`:
93+
94+
```python
95+
import plotly.express as px
96+
97+
df = px.data.gapminder()
98+
fig = px.scatter(df, x="gdpPercap", y="lifeExp", animation_frame="year", animation_group="country",
99+
size="pop", color="continent", hover_name="country",
100+
log_x=True, size_max=55, range_x=[100,100000], range_y=[25,90])
101+
102+
fig["layout"].pop("updatemenus") # optional, drop animation buttons
103+
fig.show()
104+
```
105+
83106
#### Reference
84107
Check out https://plotly.com/python/reference/#layout-updatemenus for more information!

0 commit comments

Comments
 (0)