我在Bokeh条形图中添加了标注注释:
labels = LabelSet(x='roomsavailable', y='area', text='roomsavailable', level='glyph',
x_offset=-15, y_offset=-13.5, source=source, render_mode='canvas')
p.add_layout(labels)
有人知道是否可以调整文字的大小?
答案 0 :(得分:1)
In the docs它描述了text_font_size
属性:
文本的文本字体大小值。
所以尝试像
这样的东西YOUR_FONT_SIZE = 10
labels = LabelSet(x='stock',
y='area',
text='roomsavailable',
text_font_size=YOUR_FONT_SIZE,
level='glyph',
x_offset=-15,
y_offset=-13.5,
source=source,
render_mode='canvas')
答案 1 :(得分:1)
这是@MarkWeston已经存在的答案的引伸。
让我们看看下面的这个最小示例:
from bokeh.io import show
from bokeh.models import ColumnDataSource, LabelSet
from bokeh.plotting import figure
p = figure()
source = ColumnDataSource(dict(x=[x for x in range(1,8)],
y=[1]*7,
names=[str(x) for x in range(1,8)]
)
)
p = figure(x_range=(0, 8), y_range=(0, 2), plot_height=100, tools='' )
labels = LabelSet(x='x', y='y', text='names', level='overlay', text_align='center',
x_offset=0, y_offset=-8, source=source, render_mode='canvas')
p.add_layout(labels)
p.circle(x='x', y='y', radius=0.3, alpha=0.3, source=source)
p.xgrid.visible = False
p.ygrid.visible = False
p.xaxis.visible = False
p.yaxis.visible = False
show(p)
这是example的输出。
现在,我们可以按照@MarkWeston的回答进行操作,并预先设置所需的参数。
如果创建LabelSet
,则可以传递documentation of LabelSet中说明的所有参数。
但是,如果您要在致电p.add_layout()
之后更改设置,还有另一种方法。
函数p.add_layout(labels)
带有一个名为place
的参数。有效值为left
,right
,above
,below
和默认值center
。有关更多信息,请参见documentation to add_layout。
为简化起见,假设您使用默认值add_layout()
调用center
函数。现在,我们需要将p.center
中LabelSet
中包含的列表的索引放在哪个位置。
我们可以通过运行获取此信息
[i for i, item in enumerate(p.center) if isinstance(item, LabelSet)]
>>> [2]
,它将返回“ 2”。请注意,在0和1处有不可见的网格。
现在,我们可以更改此LabelSet
调用行的参数设置,例如
p.center[2].text_color = {'value':'#0000ff'}
p.center[2].text_size = {'value':'11pt'}
p.center[2].text_size = 'TimesNewRoman'
还有更多
如果您再次使用show(p)
绘制图形,则可以看到变化,看起来像
this。
答案 2 :(得分:0)
text_font_size接受一个字符串值,例如 YOUR_FONT_SIZE ='10pt'
答案 3 :(得分:0)
您还可以添加以下代码:
p.xaxis.axis_label_text_font_size = '15pt'
p.yaxis.axis_label_text_font_size = '15pt'