有没有办法在Bokeh图例中更改字形的alpha值?
举个例子。我将我的绘图中的线条的alpha设置为0.1
,但图例中的线条字形也反映了此Alpha值。
您可以更改图例中其他所有内容的alpha(即边框,文本,背景),但不能更改字形?!
这令人沮丧,因为这意味着我无法判断哪种颜色与哪个标签相关联(如果alpha设置为低)。
import numpy as np
from bokeh.plotting import output_file, figure, show
x = np.linspace(0, 4*np.pi, 100)
y = np.sin(x)
alpha = .1
output_file("legend_background.html")
p = figure()
p.line(x, y, legend="sin(x)", line_alpha=alpha)
p.line(x, 2*y, legend="2*sin(x)",
line_dash=[4, 4], line_color="orange", line_width=2, line_alpha=alpha)
p.line(x, 3*y, legend="3*sin(x)", line_color="green", line_alpha=alpha)
p.legend.location = "top_right"
show(p)
能够做p.legend.glyph_alpha = 0.9
之类的事情会很棒。
澄清:在实际使用案例中,我可以拥有超过100,000行(即一个标签30,000个,另一个标签70,000个),因此我希望能够设置情节中的线的alpha非常低,以寻找重叠的趋势等。