plotting_title_basic.pyΒΆ


from bokeh.plotting import figure, show, output_file

p = figure(title="Basic Title", plot_width=300, plot_height=300)
p.circle([1,2], [3,4])

output_file("title.html")

show(p)