Skip to content

Commit

Permalink
Ensure that defaults set color not fill_color (#3571)
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Mar 22, 2019
1 parent b32d360 commit 57aa93a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions holoviews/plotting/bokeh/__init__.py
Expand Up @@ -168,7 +168,7 @@ def colormap_generator(palette):
if not config.style_17:
options.Points = Options('plot', show_frame=True)

options.Histogram = Options('style', line_color='black', fill_color=Cycle(), muted_alpha=0.2)
options.Histogram = Options('style', line_color='black', color=Cycle(), muted_alpha=0.2)
options.ErrorBars = Options('style', color='black')
options.Spread = Options('style', color=Cycle(), alpha=0.6, line_color='black', muted_alpha=0.2)
options.Bars = Options('style', color=Cycle(), line_color='black', bar_width=0.8, muted_alpha=0.2)
Expand Down Expand Up @@ -270,7 +270,7 @@ def colormap_generator(palette):

# Statistics
options.Distribution = Options(
'style', fill_color=Cycle(), line_color='black', fill_alpha=0.5,
'style', color=Cycle(), line_color='black', fill_alpha=0.5,
muted_alpha=0.2
)
options.Violin = Options(
Expand Down

0 comments on commit 57aa93a

Please sign in to comment.