hvplot
hvplot copied to clipboard
Document the hover modes 'vline' and 'hline'
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']
That is a nice one that I have been missing compared to HighCharts that I am also using.
