我正在尝试使用Bokeh创建一个类似于Excel中的黑暗样式图表的图表。它似乎在中心较浅,然后变暗。
要在Bokeh中设置背景颜色,您可以执行以下相关操作:相关Bokeh documentation:
from bokeh.plotting import figure, output_file, show
output_file("background.html")
# create a new plot with a title
p = figure(plot_width=400, plot_height=400)
p.background_fill_color = "beige"
p.background_fill_alpha = 0.5
p.circle([1, 2, 3, 4, 5], [2, 5, 8, 2, 7], size=10)
show(p)
另外,在Bokeh documentation中提到了指定颜色的方法:
在Bokeh的许多地方使用颜色属性来指定 用于线条,填充或文本的颜色。可以提供颜色值 通过以下任何一种方式:
- any of the 147 named CSS colors, e.g 'green', 'indigo' - an RGB(A) hex value, e.g., '#FF0000', '#44444444' - a 3-tuple of integers (r,g,b) between 0 and 255 - a 4-tuple of (r,g,b,a) where r, g, b are integers between 0 and 255 and a is a floating point value between 0 and 1
基于上述情况,您似乎只能为背景设置一种颜色。
有没有办法在散景图中设置渐变作为背景颜色?
答案 0 :(得分:0)
从Bokeh 0.13.0开始不支持此功能。背景填充颜色只能是一种颜色。