我想将某个绘图上的所有Bokeh字形转换为其他页面的链接。这可能吗?
例如,如果我有一个国家/地区的地图,每个国家/地区都作为补丁,如果用户点击某个国家/地区,我想将其重定向到该维基百科页面。
答案 0 :(得分:5)
User's Guide中还有一个更简单的例子:
from bokeh.models import ColumnDataSource, OpenURL, TapTool
from bokeh.plotting import figure, output_file, show
output_file("openurl.html")
p = figure(plot_width=400, plot_height=400,
tools="tap", title="Click the Dots")
source = ColumnDataSource(data=dict(
x=[1, 2, 3, 4, 5],
y=[2, 5, 8, 2, 7],
color=["navy", "orange", "olive", "firebrick", "gold"]
))
p.circle('x', 'y', color='color', size=20, source=source)
url = "http://www.colors.commutercreative.com/@color/"
taptool = p.select(type=TapTool)
taptool.callback = OpenURL(url=url)
show(p)