Unable to edit hover tooltip after using groupby
Open
- Dominant language
- Python
- Stars
- 1.4k
- Forks
- 124
- Avg merge
- 1d 18h
- Merged PRs (30d)
- 1
Description
Hi,
I am able to change the hover tooltips if I am not using `groupby`. But after adding `groupby`, I find no way to modify the tooltips. Is this a bug?
Issue code:
```
hover = HoverTool(tooltips="test")
by_state_hv.hvplot.line(x='date',
y='abc',
groupby='state'
).opts(tools=[hover])
```
and
```
by_state_hv.hvplot.line(x='date',
y='abc',
groupby='state',
hover_cols=['date']
)
```
Thanks
Contributor guide
Assessment
This issue has not been assessed yet.