Philipp Rudiger
Philipp Rudiger
I think the main other candidates are: * [Audio](https://panel.holoviz.org/reference/panes/Audio.html) * [Video](https://panel.holoviz.org/reference/panes/Video.html) * [KaTeX](https://panel.holoviz.org/reference/panes/LaTeX.html) * [MathJax](https://panel.holoviz.org/reference/panes/LaTeX.html) * [Card](https://pyviz-dev.github.io/panel/reference/layouts/Card.html) * [VideoStream](https://panel.holoviz.org/reference/widgets/VideoStream.html)
Hmm, the easiest approach **I think** would simply be to introduce one extra label for the existing bokeh channel so we'd have something like `dev`, `main` and `rc`. That could...
Yes it was a performance consideration. I agree that we should be able to toggle the behavior.
Not as far as I know unfortunately.
Definitely think this is a good idea. The API I can imagine would be something like: ```python df.plot(..., yaml=True) ``` This would be very easy to achieve, but may be...
Those are all slightly different things though. Serializing HoloViews in general means serializing the data along with any parameters and plot and style options, which is quite a difficult problem...
True, I suppose I got confused because I'm not sure how serializing options relates to param serialization as you suggested. While plot options do reflect underlying parameters on the plot...
I'm very open to suggestions here but this is expected behavior, currently streaming plots have a default ``backlog`` set which buffers the last ``N`` rows. We should definitely have an...
>I am suggesting this is not right I do agree with that and I'll consider this as a bug but I'm not yet entirely clear on what to do about...
So internally hvPlot uses the `_stream_type` attribute to determine whether to update the data entirely or to stream new data. This seems to work okay for things like aggregations where...