hvplot icon indicating copy to clipboard operation
hvplot copied to clipboard

Document the hover modes 'vline' and 'hline'

Open maximlt opened this issue 3 years ago • 1 comments

Support for these modes has been added a while ago but never documented.

It works by passing 'vline'/'hline' to hover or in the list of tools:

import hvplot.pandas  # noqa
from bokeh.sampledata.degrees import data as deg

deg.hvplot.line(x='Year', y=['Business', 'Computer Science'], hover='vline')  # or tools=['vline']

maximlt avatar Oct 27 '22 17:10 maximlt

That is a nice one that I have been missing compared to HighCharts that I am also using.

image

MarcSkovMadsen avatar Oct 27 '22 19:10 MarcSkovMadsen