Skip to content

Commit 6ac3f3d

Browse files
authored
Document simple_white template
1 parent 64e3bc0 commit 6ac3f3d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: python/templates.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ import plotly.express as px
6060
gapminder = px.data.gapminder()
6161
gapminder_2007 = gapminder.query("year==2007")
6262

63-
for template in ["plotly", "plotly_white", "plotly_dark", "ggplot2", "seaborn", "none"]:
63+
for template in ["plotly", "plotly_white", "plotly_dark", "ggplot2", "seaborn", "simple_white", "none"]:
6464
fig = px.scatter(gapminder_2007,
6565
x="gdpPercap", y="lifeExp", size="pop", color="continent",
6666
log_x=True, size_max=60,
@@ -85,7 +85,7 @@ fig = go.Figure(
8585
height=500,
8686
))
8787

88-
for template in ["plotly", "plotly_white", "plotly_dark", "ggplot2", "seaborn", "none"]:
88+
for template in ["plotly", "plotly_white", "plotly_dark", "ggplot2", "seaborn", "simple_white", "none"]:
8989
fig.update_layout(template=template, title="Mt Bruno Elevation: '%s' theme" % template)
9090
fig.show()
9191
```

0 commit comments

Comments
 (0)