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?
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
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With