How do I implement "tooltips" for the hover tool in Bokeh 0.12.11 (and possibly other versions)?
Searching for "Bokeh hover tooltips" gives a bunch of documentation results such as: https://docs.bokeh.org/en/latest/docs/user_guide/tools.html
But when I try to implement the "tooltips" on Bokeh 0.12.11 from an example such as: https://docs.bokeh.org/en/latest/docs/gallery/elements.html
I get the following error:
AttributeError: unexpected attribute 'tooltips' to Figure, possible attributes are above, aspect_scale, etc.
tooltipsandFigureis because the ability to passtooltipsto Figure was added in0.13but you are running0.12.11. You should always refer to the documentation and examples for the version you are actually running, if it is not the latest.