8000 Merge remote-tracking branch 'origin/master' into kaleido · plotly/plotly.py@299165d · GitHub
[go: up one dir, main page]

Skip to content

Commit 299165d

Browse files
committed
Merge remote-tracking branch 'origin/master' into kaleido
2 parents 3e1cbd4 + d54d922 commit 299165d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

doc/python/dropdowns.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ fig.update_scenes(
147147
aspectmode="manual"
148148
)
149149

150-
# Add drowdowns
150+
# Add dropdowns
151151
button_layer_1_height = 1.08
152152
fig.update_layout(
153153
updatemenus=[

doc/python/hover-text-and-formatting.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ df_2007 = px.data.gapminder().query("year==2007")
228228
fig = px.scatter(df_2007, x="gdpPercap", y="lifeExp", log_x=True, color='continent'
229229
)
230230
print("plotly express hovert 8000 emplate:", fig.data[0].hovertemplate)
231-
fig.update_traces(hovertemplate='GDP: %{x} <br>Life Expectany: %{y}') #
231+
fig.update_traces(hovertemplate='GDP: %{x} <br>Life Expectancy: %{y}') #
232232
fig.update_traces(hovertemplate=None, selector={'name':'Europe'}) # revert to default hover
233233
print("user_defined hovertemplate:", fig.data[0].hovertemplate)
234234
fig.show()
@@ -404,4 +404,4 @@ fig.show()
404404

405405
#### Reference
406406

407-
See https://plotly.com/python/reference/ for more information and chart attribute options!
407+
See https://plotly.com/python/reference/ for more information and chart attribute options!

doc/python/legend.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -428,10 +428,10 @@ fig.add_trace(go.Streamtube(
428428
))
429429
# Update all traces together
430430
fig.update_traces(showlegend=True, showscale=False)
431-
fig.update_layout(width=600, title_text='Exporation of a vector field using several traces')
431+
fig.update_layout(width=600, title_text='Exploration of a vector field using several traces')
432432
fig.show()
433433
```
434434

435435
#### Reference
436436

437-
See https://plotly.com/python/reference/#layout-legend for more information!
437+
See https://plotly.com/python/reference/#layout-legend for more information!

0 commit comments

Comments
 (0)
0