python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
The hv.Div() does not show the expected HTML code
I use a Div as follows:
html = '<h1>Thi is my title</h1>'
div = hv.Div(html)
but the result is
<div class="bk bk-clearfix" style="display: inline-block; width: 300px; he...
Dario de Judicibus
Votes: 0
Answers: 1
Two column layout for HoloViews plots
I have three HoloViews (Bokeh) plots. I want to place them as follows:
+---+
| |
| +---+
| | !
| A | B |
| | |
| +---|
| | |
| | C |
| | |
+---+---+
that is, on two columns: f...
Dario de Judicibus
Votes: 0
Answers: 1
Turn active tools for NdOverlay object off
I have an overlay figure using hvplots and would like to turn all tools off by default. I know that when you have a figure handle, this could be done as described here, using plot.toolbar.active_drag ...
Paul
Votes: 0
Answers: 1
How to add Holoviews chart in a Bokeh figure?
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
sanke...
Dario de Judicibus
Votes: 0
Answers: 0