Skip to content

Commit

Permalink
Set bgcolor default to None in bokeh plotting extension
Browse files Browse the repository at this point in the history
  • Loading branch information
jlstevens committed Jan 24, 2018
1 parent cbda26b commit 1d4c11e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion holoviews/plotting/bokeh/element.py
Expand Up @@ -49,7 +49,7 @@

class ElementPlot(BokehPlot, GenericElementPlot):

bgcolor = param.Parameter(default='white', doc="""
bgcolor = param.Parameter(default=None, allow_None=True, doc="""
Background color of the plot.""")

border = param.Number(default=10, doc="""
Expand Down

0 comments on commit 1d4c11e

Please sign in to comment.