Reputation: 775
I have a Bokeh App that contains a Line Plot. This plot has 10 lines in it. How do I color the lines with different shades of the same color?
Is there any way I can generate a list of different shades of the same color without hardcoding it?
Upvotes: 3
Views: 2819
Reputation: 2137
You could use a palette from bokeh.palettes:
from bokeh.plotting import figure, output_file, show
from bokeh.palettes import Blues9
output_file('palette.html')
p = figure()
p.scatter(x=[0,1,2,3,4,5,6,7,8], y=[0,1,2,3,4,5,6,7,8], radius=1, fill_color=Blues9)
show(p)
https://docs.bokeh.org/en/latest/docs/reference/palettes.html
Upvotes: 4