q=figure(title='This chart appears just right size in notebook but is then too small for slides',width=980,height=500)q.line(x=[3,2,1],y=[8,3,1])show(q)
In [24]:
p=figure(title='This chart shows full size in slides, but is then small on notebook',width=840,height=500)p.line(x=[1,2,4],y=[5,3,1])show(p)
Is Width = 840 the maximum width of a bokeh chart in Jupyter?
In [77]:
r_out=[]forxinrange(3):r=figure(title='Only 840? Titles get very small when combininng charts',width=int(840/3),height=250)r.line(x=[5,4,3],y=[8,3,1])r_out.append(r)