Let us suppose that I created a Bokeh figure as such
fig = figure(title="Any title", width=1600, height=800)
and that I created a Holoviews Sankey chat from a Pandas DataFrame as such
sankey = hv.Sankey(data)
sankey.opts(width=1200, height=600)
How can I insert that chart in that figure?