Bokeh 定制图例
绘图中的各种字形可以通过图例属性来识别,默认情况下,在绘图区域的右上方位置出现一个标签。这个图例可以通过以下属性进行自定义
1 | legend.label_text_font | 将默认的标签字体改为指定的字体名称 |
---|---|---|
2 | legend.label_text_font_size | 字体大小,单位:点 |
3 | legend.location | 在指定的位置设置标签。 |
4 | legend.title | 为图例标签设置标题 |
5 | legend.orientation | 设置为水平(默认)或垂直 |
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)
输出