我如何在条形图 -bokeh 中使用点击工具

how can i use tap tool with bar chart -bokeh

在条形图上使用 bokeh tap 工具时,我需要获取所选的 id bar.how 我可以在不使用 customJS 的情况下获取每个条形的 id 代码是 运行 使用散景服务器

source = ColumnDataSource(data=df)

p = figure(x_range=source.data['month'], plot_height=600, toolbar_location=None, tools="tap,hover", title="month analysis")

p.vbar(x='month', top='count', width=0.5, source=source, legend="month",
       line_color='white', fill_color=factor_cmap('month', palette=Spectral6, factors=df['month']))
hover = HoverTool(tooltips=[("count", "@count")])


p.legend.orientation = "horizontal"
p.legend.location = "top_right"


taptool = p.select(type=TapTool)


curdoc().add_root(row( p, width=800))

这应该有效。可以在 source.selected.indices.

中找到所选字形的 ID
#!/usr/bin/python3
import pandas as pd
from bokeh.plotting import figure, show, curdoc
from bokeh.io import output_file
from bokeh.models import ColumnDataSource, HoverTool, TapTool
from bokeh.transform import factor_cmap
from bokeh.palettes import Spectral6
from bokeh.layouts import row
from bokeh.events import Tap

df = pd.read_csv('data.csv')
df['count'] = df['count'].astype(dtype='int32')

source = ColumnDataSource(data=df)

p = figure(x_range=source.data['month'], plot_height=600, toolbar_location=None, tools="tap,hover", title="month analysis")

p.vbar(x='month', top='count', width=0.5, source=source, legend="month",
       line_color='white', fill_color=factor_cmap('month', palette=Spectral6, factors=df['month']))
hover = HoverTool(tooltips=[("count", "@count")])


p.legend.orientation = "horizontal"
p.legend.location = "top_right"


taptool = p.select(type=TapTool)

def callback(event):
    selected = source.selected.indices
    print(selected)

p.on_event(Tap, callback)


curdoc().add_root(row( p, width=800))