We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 361fdd5 commit f258fb3Copy full SHA for f258fb3
packages/python/plotly/plotly/io/_templates.py
@@ -37,7 +37,7 @@ def __init__(self):
37
default_templates = [
38
"ggplot2",
39
"seaborn",
40
- "mpl",
+ "simple_white",
41
"plotly",
42
"plotly_white",
43
"plotly_dark",
packages/python/plotly/plotly/package_data/templates/mpl.json renamed to packages/python/plotly/plotly/package_data/templates/simple_white.json
packages/python/plotly/templategen/definitions.py
@@ -74,7 +74,7 @@ def ggplot2():
74
builders["ggplot2"] = ggplot2
75
76
77
-def mpl():
+def simple_white():
78
# Set colorbar_common
79
colorbar_common = dict(
80
outlinewidth=10,
@@ -152,7 +152,7 @@ def mpl():
152
return template
153
154
155
-builders["mpl"] = mpl
+builders["simple_white"] = simple_white
156
157
158
def seaborn():
0 commit comments