Bokeh - 自定义图例


图中的各种字形可以通过图例属性来识别,默认情况下作为标签出现在绘图区域的右上角位置。该图例可以通过以下属性自定义 -

1 legend.label_text_font 将默认标签字体更改为指定字体名称
2 legend.label_text_font_size 字体大小(以磅为单位)
3 图例.位置 将标签设置在指定位置。
4 图例.标题 设置图例标签的标题
5 图例.方向 设置为水平(默认)或垂直
6 legend.clicking_policy 指定单击图例时应发生的情况隐藏:隐藏与图例对应的字形静音:静音与图例对应的字形td>

例子

图例定制的示例代码如下 -

from bokeh.plotting import figure, output_file, show
import math
x2 = list(range(1,11))
y4 = [math.pow(i,2) for i in x2]
y2 = [math.log10(pow(10,i)) for i in x2]
fig = figure(y_axis_type = 'log')
fig.circle(x2, y2,size = 5, color = 'blue', legend = 'blue circle')
fig.line(x2,y4, line_width = 2, line_color = 'red', legend = 'red line')
fig.legend.location = 'top_left'
fig.legend.title = 'Legend Title'
fig.legend.title_text_font = 'Arial'
fig.legend.title_text_font_size = '20pt'
show(fig)

输出

自定义图例