-
-
Notifications
You must be signed in to change notification settings - Fork 108
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tooltips "@value" no longer works #1441
Comments
The new features |
Can you share how you used the hover_tooltips/hover_formatters? |
The behavior was changed here: |
Previously:
Now:
And |
This is the code that works:
|
Just to confirm, did you do a
I can't look at this today but just want to note that the whole code now is: chart = element(data, kdims, vdims)
chart = relabel_redim(chart, self._relabel, self._redim)
charts.append((c, chart)) |
Manually bisected :) I initially thought my hover_tooltips PR broke it, but was surprised to find it was not the culprit, so I checked out relevant sounding ones, re-ran the code, and found it. |
Yes I confirmed that the PR you identified broke caused this issue. Need to see if there's a way around this without losing the optimization. |
ALL software version info
Software Version Info
Description of expected behavior and the observed behavior
hvplot 1.19 broke bokeh tooltips. The ("value", "@value") entry in tooltips does not make hover tool to display dataframe column values.
Complete, minimal, self-contained example code that reproduces the issue
This is a slightly modified example from https://discourse.holoviz.org/t/how-to-set-up-hovertool-for-multiple-columns-with-hvplot/4294/4. I run it as
It works fine with holoviews up to 1.18.3, fails with higher versions, see the screen capture below..
The text was updated successfully, but these errors were encountered: