gpt4 book ai didi

python - 将 Bokeh Glyph 变成一个链接

转载 作者:太空宇宙 更新时间:2023-11-03 14:08:20 24 4
gpt4 key购买 nike

我想将某个情节上的所有 Bokeh 字形转换为指向其他页面的链接。这可能吗?

例如,如果我有一张国家 map ,每个国家作为一个补丁,如果用户点击一个国家,我想将他们重定向到该维基百科页面。

最佳答案

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)

关于python - 将 Bokeh Glyph 变成一个链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41511274/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com