Skip to content

Commit

Permalink
Fixed shared_axes for Bokeh adjoined plots
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Dec 11, 2015
1 parent bafc20a commit 885bc2f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion holoviews/plotting/bokeh/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,8 @@ def initialize_plot(self, ranges=None, plots=[]):
subplot = self.subplots.get(pos, None)
# If no view object or empty position, disable the axis
if subplot:
adjoined_plots.append(subplot.initialize_plot(ranges=ranges, plots=plots))
passed_plots = plots + adjoined_plots
adjoined_plots.append(subplot.initialize_plot(ranges=ranges, plots=passed_plots))
self.drawn = True
if not adjoined_plots: adjoined_plots = [None]
return adjoined_plots
Expand Down

0 comments on commit 885bc2f

Please sign in to comment.