2017-09-15 55 views

回答

0

Bokeh palettes在列表中存儲顏色。 plot函數需要一個明確的值。例如 -

from bokeh.plotting import figure, show 
from bokeh.palettes import Greys 
p=figure() 
color=Greys[3][1] #See the pyramid in the above mentioned link 
p.line([1,2,3],[2,3,2],color=color) 
show(p) 
相關問題