散景为水平堆叠条形图添加标签

时间:2018-07-26 18:06:24

标签: python plot bokeh

我创建了一个从0到100%的简单水平堆积条形图,该条形图只需要两个数据就可以知道两者之间的平衡。我希望能够在栏中写出它们的值(如果可能的话,写在中间)。但是即使是if this example looks similar,我也找不到一种方法可以使其适应我的水平堆积条形图。

到目前为止,这是我的代码:

colors = ["blue", "red"]
choose = ["a", "b"]
y_axis = ['Percent']
# For example for 60.1% and 39.9%
data = {'y' : y_axis,
       'a'   : [60.1],
       'b'   : [39.9]}

p = figure(y_range=y_axis, plot_height=150, x_range=(0, 100), title="TITLE", toolbar_location=None)
p.hbar_stack(choose, y='y', height=0.6, color=colors, source=ColumnDataSource(data))
p.add_tools(HoverTool(tooltips=[("A", "@a{1.1}%"), ("B", "@b{1.1}%")]))

labels = LabelSet(x=choose, y=y_axis, text=choose, level='glyph',
        x_offset=-13.5, y_offset=0, source=ColumnDataSource(data), render_mode='canvas')
p.add_tools(labels) # Can we do that ?

p.ygrid.grid_line_color = None
p.axis.minor_tick_line_color = None
p.outline_line_color = None

理想情况下,我希望得到这样的结果: enter image description here

1 个答案:

答案 0 :(得分:2)

我使用了两个Label而不是一个LabelSet

left_label = Label( x=20,
                    y=0.35,
                    x_units='data',
                    y_units='data',
                    text="%s%%"%left_percent_var,
                    text_color="white",
                    text_font_size="20pt",
                    text_font_style="bold",
                    level='glyph',
                    render_mode='css'
                )
plot.add_layout(left_label)