plotting_title_location.pyΒΆ
from bokeh.plotting import figure, show, output_file
p = figure(title="Left Title", title_location="left",
plot_width=300, plot_height=300)
p.circle([1,2], [3,4])
output_file("title.html")
show(p)
from bokeh.plotting import figure, show, output_file
p = figure(title="Left Title", title_location="left",
plot_width=300, plot_height=300)
p.circle([1,2], [3,4])
output_file("title.html")
show(p)