我正在绘制各种散点图,并添加了BoxAnnotation以突出显示时间段。现在,我想标记或添加图例对此BoxAnnotation表示的描述。相关代码为:
p = figure(title=plot_title, x_axis_label = 'Time(UTC)', y_axis_label= id,
x_axis_type = "datetime", plot_width = 700, plot_height = 300)
for comm in dsn_comms:
low_box = BoxAnnotation(left = comm.start, right = comm.stop, fill_alpha = 0.1, fill_color = "#99FF99")
p.add_layout(low_box)
d = p.circle(data_times, data_values, color = colors, line_color=None, size = 2)
将创建以下图形: graph
绿色部分是我要标记的部分,y轴变化,因此我无法对其进行硬编码,并且由于它不是字形,因此无法将BoxAnnotation添加到图例中。关于我能做什么的任何想法?
谢谢。