Tooltips work fine on the plot, but when in fullscreen they don’t show up. Is this a bug or a known limitation? Thanks.
from bokeh.plotting import figure, show, output_notebook
output_notebook()
p = figure(tools='hover,fullscreen')
p.scatter([1, 2, 3], [1, 2, 3])
show(p)