在Bokeh LabelSet中更改文本字体大小

时间:2017-02-16 12:16:12

标签: python python-2.7 bokeh

我使用Bokeh Server将一些图表部署为布局。目前它工作正常。但是当我在标签集中包含text_font_size属性时,它不再起作用了。

labels = LabelSet(x='datetime', y='bool_event', text='Code description', level='glyph',
                  x_offset=5, y_offset=5, source=ColumnDataSource(df2), render_mode='canvas',
                  text_font_size=10)

我得到的错误如下: Error

实际布局如下: Layout

1 个答案:

答案 0 :(得分:5)

您需要为text_font_size提供单位。代码应如下所示:

  labels = LabelSet(x='datetime', y='bool_event', text='Code description', level='glyph',
              x_offset=5, y_offset=5, source=ColumnDataSource(df2), render_mode='canvas',
              text_font_size="10pt")