Tooltips not shown when plot is in fullscreen

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)

It’s a bug. Please report an issue.

Thanks, will do.

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.