For questions, use https://discourse.holoviz.org/ instead! This chat is for informal discussions and debugging sessions with developers of the HoloViz.org tools (HoloViews, Datashader, Panel, hvPlot, GeoViews, Param, etc.), but user questions should go to the HoloViz Discourse site so that others won't have to ask them again.
philippjfr on invalidate_reactive_html_parents
philippjfr on master
Invalidate layout on ReactiveHT… (compare)
philippjfr on bokeh_hv_theme
philippjfr on master
Fix theming on HoloViews plot u… (compare)
05_Composing_Plots.ipynb
is raising a ValueError: Index is not contained within new index
. I've reported the issue here holoviz/holoviz#256. If some of you know a fix or workaround so that my course can get past this example it would be much appreciated. Thanks.
pn.Tab
elements. By using dynamic=True
, I can get the panel object to display very quickly (under 2 seconds). Each tab has reasonable responsiveness too. However, construction of the panel object takes more than 30 seconds. That's a cumbersome startup time for each person that visits my panel app. Is it possible to serialize/deserialize the panel object to pickle for faster loading? Or is there an alterative way to pre-construct the object and only render it when someone uses the app?
Hi @jbogaardt . The right place to post usage questions is on Discourse. Then the answer is recorded and shared with the community. Please post it here https://discourse.holoviz.org/.
If possible please post a minimal example or a link to code that can be run. Potentially also include some screenshots or a .gif video. It is sometimes very difficult sitting on the other side and trying to guess what the problem can be and how to solve it.
Thanks.
@michaelaye Where did you find that showcase link? Was it from google?
Google "holoviews tutorials" first hit is http://holoviews.org/Tutorials/ and Showcase is the first link on that page.
import panel as pn
pn.extension(
js_files={'textae': "http://textae.pubannotation.org/lib/textae.min.js"},
css_files=["http://textae.pubannotation.org/lib/css/textae.min.css"]
)
pane = pn.panel("""
<link rel="stylesheet" href="http://textae.pubannotation.org/lib/css/textae.min.css" />
<script src="http://textae.pubannotation.org/lib/textae.min.js"></script>
<div class="textae-editor">
{
"text":"Hello World!",
"denotations":[
{"span":{"begin":0,"end":5},"obj":"Greet"},
{"span":{"begin":6,"end":11},"obj":"Object"}
]
}
</div>
""")
pane
Calling the .opts method with options broken down by options group (i.e. separate plot, style and norm groups) is deprecated. Use the .options method converting to the simplified format instead or use hv.opts.apply_groups for backward compatibility.
. My simple opts are plot = plot.opts(shared_axes=False).opts(opts.Curve(width=400))
. Can anyone advise?