holoviz / holoviz/hvplot

Unable to edit hover tooltip after using groupby

Open
#513 0 comments 0 reactions 0 assignees View on GitHub
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

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.