title not shown for Plotly backend
- Dominant language
- Python
- Stars
- 1.4k
- Forks
- 124
- Avg merge
- 1d 18h
- Merged PRs (30d)
- 1
Description
I was trying to introduce a colleague to hvplots backends.
It seems that the `title` argument is not working for the Plotly backend.

```python
import panel as pn
from bokeh.sampledata.penguins import data as df
import matplotlib
matplotlib.use('agg')
pn.extension("plotly")
import hvplot.pandas
hvplot.extension("matplotlib", "bokeh", "plotly")
plot1 = df.hvplot.scatter(x='bill_length_mm', y='bill_depth_mm', by='species', title="Bokeh")
plot2 = df.hvplot.scatter(x='bill_length_mm', y='bill_depth_mm', by='species', title="Matplotlib")
plot3 = df.hvplot.scatter(x='bill_length_mm', y='bill_depth_mm', by='species', title="Plotly")
pn.Row(
pn.panel(plot1, backend="bokeh"),
pn.panel(plot2, backend="matplotlib"),
pn.panel(plot3, backend="plotly"),
).servable()
```
hvplot==0.8.3 holoviews==1.16.0a7
Contributor guide
Assessment
This issue has not been assessed yet.