首页 > 解决方案 > 在堆积条形图中包括散景工具提示

问题描述

我有下面的代码。谁能让我知道如何为下面的条形图添加工具提示。

from bokeh.core.properties import value
from bokeh.io import show, output_file
from bokeh.plotting import figure

output_file("stacked.html")

fruits = ['Apples', 'Pears', 'Nectarines', 'Plums', 'Grapes', 'Strawberries']
years = ["2015", "2016", "2017"]
colors = ["#c9d9d3", "#718dbf", "#e84d60"]

data = {'fruits' : fruits,
        '2015'   : [2, 1, 4, 3, 2, 4],
        '2016'   : [5, 3, 4, 2, 4, 6],
        '2017'   : [3, 2, 4, 4, 5, 3]}

p = figure(x_range=fruits, plot_height=250, title="Fruit Counts by Year",
           toolbar_location=None, tools="")

p.vbar_stack(years, x='fruits', width=0.9, color=colors, source=data,
             legend=[value(x) for x in years])

p.y_range.start = 0
p.x_range.range_padding = 0.1
p.xgrid.grid_line_color = None
p.axis.minor_tick_line_color = None
p.outline_line_color = None
p.legend.location = "top_left"
p.legend.orientation = "horizontal"

show(p)

谢谢

迈克尔

标签: pythonbokeh

解决方案


您可以通过在工具列表中指定“悬停”并向其添加工具提示来添加悬停工具。您有两种工具提示;"@" 显示 sourcedata 和 $,它们对应于绘图固有的值,例如鼠标在数据或屏幕空间中的坐标。Hovertools 很适合与ColumnDataSource结合使用,因此也可以查看一下。更多关于 hovertools 的信息可以在这里找到。

可以通过更改以下行来为您的绘图添加悬停工具:

tooltips = [
    ("fruit", "@fruits"),
    ("x, y", "$x,$y"),
]

p = figure(x_range=fruits, plot_height=300, title="Fruit Counts by Year",
           toolbar_location="right", tools=["hover"], tooltips = tooltips)

推荐阅读