plotting_title_toolbar.pyΒΆ
from bokeh.plotting import figure, show, output_file
p = figure(title="Top Title with Toolbar", toolbar_location="above",
plot_width=600, plot_height=300)
p.circle([1,2], [3,4])
output_file("title.html")
show(p)