Skip to content

Commit

Permalink
Remove hardcoding of lightgray fill color to box and violin
Browse files Browse the repository at this point in the history
  • Loading branch information
ahuang11 authored and philippjfr committed Apr 29, 2019
1 parent 966ff0b commit f40cf6f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions holoviews/plotting/bokeh/__init__.py
Expand Up @@ -161,7 +161,7 @@ def colormap_generator(palette):

# Charts
options.Curve = Options('style', color=Cycle(), line_width=2)
options.BoxWhisker = Options('style', box_fill_color='lightgray', whisker_color='black',
options.BoxWhisker = Options('style', box_fill_color=Cycle(), whisker_color='black',
box_line_color='black', outlier_color='black')
options.Scatter = Options('style', color=Cycle(), size=point_size, cmap=dflt_cmap)
options.Points = Options('style', color=Cycle(), size=point_size, cmap=dflt_cmap)
Expand Down Expand Up @@ -274,7 +274,7 @@ def colormap_generator(palette):
muted_alpha=0.2
)
options.Violin = Options(
'style', violin_fill_color='lightgray', violin_line_color='black',
'style', violin_fill_color=Cycle(), violin_line_color='black',
violin_fill_alpha=0.5, stats_color='black', box_color='black',
median_color='white'
)
Expand Down

0 comments on commit f40cf6f

Please sign in to comment.