0

i have generated 3 bokeh plots using bokeh server. we have reset tool in-built. but the requirement is to reset whole figures in a single button click.Rest should be like , reset zoom level , pan ,selection etc..

surag
  • 93
  • 1
  • 10

1 Answers1

0

Just put all the plots in a grid. For vertical lineup use ncols = 1, for horizontal ncols = 3

from bokeh.layouts import gridplot

grid = gridplot([plot1, plot2, plot3], ncols = 1)
show(grid)
Tony
  • 7,767
  • 2
  • 22
  • 51