We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b42d85 commit 4ea83e6Copy full SHA for 4ea83e6
packages/python/plotly/templategen/utils/__init__.py
@@ -82,9 +82,13 @@ def initialize_template(
82
template.layout.plot_bgcolor = panel_background_clr
83
template.layout.polar.bgcolor = panel_background_clr
84
template.layout.ternary.bgcolor = panel_background_clr
85
- set_all_colorbars(template, colorbar_common)
+
86
cartesian_axis = dict(axis_common, zerolinecolor=zerolinecolor_clr)
87
88
+ # Colorbars
89
+ set_all_colorbars(template, colorbar_common)
90
+ template.layout.coloraxis.colorbar = colorbar_common
91
92
# Colorscales
93
template.layout.colorscale.sequential = colorscale
94
if colorscale_minus is not None:
0 commit comments