Hey @p-himik might be starting to digress here but tooltips don’t seem to be working, probably because of how we’ve brought in the lines with the for loop and df.groupby. It renders but all the values are ‘???’. I hoped this would work:
ttips = HoverTool(tooltips = [
("Peak Change", "@{Peak_change}")])
p = figure(title ='whatever')
p.add_tools(ttips)
But no dice. I’ve tried to enter tooltips within the for loop but that doesn’t seem to work as p.line
won’t accept tooltips as an argument.
I’ve had a look around on other posts and stackoverflow but I only found posts that are obsolete or involved workarounds for slightly different things I didn’t understand.
Any ideas?
@Carl cool to see others trying to figure out the same thing!