Skip to content

Commit

Permalink
Merge 4945520 into 39bdc02
Browse files Browse the repository at this point in the history
  • Loading branch information
ahuang11 committed Sep 1, 2018
2 parents 39bdc02 + 4945520 commit ecc2d96
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/gallery/demos/bokeh/boxplot_chart.ipynb
Expand Up @@ -37,7 +37,7 @@
"from bokeh.sampledata.autompg import autompg as df\n",
"\n",
"title = \"MPG by Cylinders and Data Source, Colored by Cylinders\"\n",
"boxwhisker = hv.BoxWhisker(df, ['cyl', 'origin'], 'mpg', label=title)"
"boxwhisker = hv.BoxWhisker(df, ['cyl', 'origin'], 'mpg', label=title).options(color_index=0)"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion examples/gallery/demos/matplotlib/boxplot_chart.ipynb
Expand Up @@ -38,7 +38,7 @@
"from bokeh.sampledata.autompg import autompg as df\n",
"\n",
"title = \"MPG by Cylinders and Data Source, Colored by Cylinders\"\n",
"boxwhisker = hv.BoxWhisker(df, ['cyl', 'origin'], 'mpg', label=title)"
"boxwhisker = hv.BoxWhisker(df, ['cyl', 'origin'], 'mpg', label=title).options(color_index=0)"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion holoviews/plotting/bokeh/__init__.py
Expand Up @@ -160,7 +160,7 @@ def colormap_generator(palette):

# Charts
options.Curve = Options('style', color=Cycle(), line_width=2)
options.BoxWhisker = Options('style', box_fill_color=Cycle(), whisker_color='black',
options.BoxWhisker = Options('style', box_fill_color='lightgray', 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

0 comments on commit ecc2d96

Please sign in to comment.