styling_plot_outline_line_color.pyΒΆ
from bokeh.plotting import figure, output_file, show
output_file("outline.html")
p = figure(plot_width=400, plot_height=400)
p.outline_line_width = 7
p.outline_line_alpha = 0.3
p.outline_line_color = "navy"
p.circle([1,2,3,4,5], [2,5,8,2,7], size=10)
show(p)