We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc11111 commit 74be0c5Copy full SHA for 74be0c5
templategen/utils/__init__.py
@@ -1,4 +1,5 @@
1
from plotly import graph_objs as go
2
+from .colors import GRAY27
3
4
colorscale_parent_paths = [
5
('histogram2dcontour',),
@@ -158,7 +159,9 @@ def initialize_template(annotation_defaults,
158
159
160
# Bar outline
161
template.data.bar = [
- {'marker': {'line': {'width': 0.5, 'color': panel_background_clr}}}]
162
+ {'marker': {'line': {'width': 0.5, 'color': panel_background_clr}},
163
+ 'error_y': {'color': GRAY27}, # Changing marker line color also affects error color, so reset defaults
164
+ 'error_x': {'color': GRAY27}}]
165
template.data.barpolar = [
166
{'marker': {'line': {'width': 0.5, 'color': panel_background_clr}}}]
167
0 commit comments