Skip to content

Commit

Permalink
Fixed bug disabling toolbar on bokeh elementplot
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed May 15, 2017
1 parent 9909c29 commit c365222
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions holoviews/plotting/bokeh/element.py
Expand Up @@ -382,7 +382,7 @@ def _init_plot(self, key, element, plots, ranges=None):
if self.toolbar:
tools = self._init_tools(element)
properties['tools'] = tools
properties['toolbar_location'] = self.toolbar
properties['toolbar_location'] = self.toolbar

properties['webgl'] = Store.renderers[self.renderer.backend].webgl
with warnings.catch_warnings():
Expand Down Expand Up @@ -1129,7 +1129,7 @@ class OverlayPlot(GenericOverlayPlot, LegendPlot):

_propagate_options = ['width', 'height', 'xaxis', 'yaxis', 'labelled',
'bgcolor', 'fontsize', 'invert_axes', 'show_frame',
'show_grid', 'logx', 'logy', 'xticks',
'show_grid', 'logx', 'logy', 'xticks', 'toolbar',
'yticks', 'xrotation', 'yrotation', 'lod',
'border', 'invert_xaxis', 'invert_yaxis']

Expand Down

0 comments on commit c365222

Please sign in to comment.