Is it possible to integrate a Holoviews Plot to an existing Bokeh APP and update its data using widgets the same way it is done with ordinary Bokeh Plots?
for example, I would like to do something like this:
### Creating a Chord Plot from Holoviews
p_holo=hv.Chord(pd.DataFrame(dic_plot))
### Rendering to Bokeh Figure
p=hv.render(p_holo)
...
### Defining a callback for changing Holoviews Plot data:
def update_holo_data():
...
p.data=new_data