xarray interactive widgets don't update text when displayed with panel
See original GitHub issueIf I open up a dataset
import xarray as xr
import hvplot.xarray
import panel as pn
import panel.widgets as pnw
ds = xr.tutorial.open_dataset('air_temperature').load()
and try out interactive selection
ds.interactive.sel(lat=pnw.DiscreteSlider, lon=pnw.DiscreteSlider)
everything works great! But if I try to display the same object with Panel:
pn.Row(ds.interactive.sel(lat=pnw.DiscreteSlider, lon=pnw.DiscreteSlider))
Although the view of the dataset is updated, the text above the slider never updates.
ALL software version info
hvplot 0.7.1
holoviews 1.14.3
panel 0.11.3
bokeh 2.3.2
Description of expected behavior and the observed behavior
I expect the interactive slider text to update regardless of whether it’s displayed with panel
Issue Analytics
- State:
- Created 2 years ago
- Comments:5 (4 by maintainers)
Top Results From Across the Web
python - Panel/Hvplot interaction when variable is changing
but when I try to display the map, I get: Exception: Nesting a DynamicMap inside a DynamicMap is not supported. It would seem...
Read more >Panel plots are not updating from widget inputs
I'm trying to build a POC app with a map (plotly.choropleth_mapbox) that updates given inputs from widgets (a slider, a text box, a...
Read more >I prefer to use Panel for my data apps. Here is why. - Medium
I am Marc Skov Madsen. I have a passion for interactive data analysis and data apps. And a lot of experience across frameworks....
Read more >A tour (of a small part) of the Python visualization landscape
Take you from exploratory work ows smoothly to interactive dashboards ... Also note that Panel widgets are reactive, so they will update even...
Read more >Interactive wxmplot displays - wxPython+matplotlib
This means that not only can you zoom in, change themes, etc from the Plot window, you can can also easily plot other...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Nevermind, I can reproduce your issue, @jbednar is just confusing this issue with the issue he filed a while back that was fixed.
@philippjfr Should this issue be moved to the panel repo then?