-
-
Notifications
You must be signed in to change notification settings - Fork 575
Open
Labels
Milestone
Description
I'm quite new to Panel and I would really like to start using it since it supports a wide range of Python plotting libraries and is excellent for dashboarding even for professional settings.
However, I happen to be predominantly using the Lets-Plot Python visualization library, which unfortunately, doesn't seem to be supported by Panel!
When I bind a panel widget to a plotting function that returns a lets-plot plot object, the plot is not rendered (laid out) upon using a Panel layout such as Column.
Here's a MRE:
from lets_plot import *
import panel as pn
import pandas as pd
LetsPlot.setup_html()
pn.extension()
df = pd.DataFrame({
'x': [1, 2, 3, 4, 5, 6, 7, 8, 9, 10],
'y': [2, 4, 1, 8, 5, 7, 6, 3, 9, 10],
})
def create_lets_plot(rng):
p = (ggplot(df[:rng]) + geom_line(aes(x='x', y='y')))
return p
slider = pn.widgets.IntSlider(name="range", value=5, start=0, end=len(df))
bound_plot = pn.bind(create_lets_plot, slider)
pn.Column(slider, bound_plot)
The only way to actually visualize anything is by forcing a plot via p.show(), but that will stack the plots multiple times which is obviously undesirable.
OSuwaidi