我正在尝试bokeh data table。是否可以在bokeh表的每个字段中添加HoverTool

一个DataTable的例子
python - 如何将HoverTool添加到数据表(Bokeh,Python)-LMLPHP

以及HoverTool如何工作的示例-
python - 如何将HoverTool添加到数据表(Bokeh,Python)-LMLPHP

最佳答案

这可以使用HTMLTemplateFormatter来实现:

main.py :

from os.path import dirname, join
import pandas as pd
from bokeh.io import curdoc, show
from bokeh.models import ColumnDataSource, Div
from bokeh.models.widgets import DataTable, TableColumn, HTMLTemplateFormatter
from bokeh.layouts import layout

template = """<span href="#" data-toggle="tooltip" title="<%= value %>"><%= value %></span>"""

df = pd.DataFrame([
    ['this is a longer text that needs a tooltip, because otherwise we do not see the whole text', 'this is a short text'],
    ['this is another loooooooooooooooong text that needs a tooltip', 'not much here'],
], columns=['a', 'b'])

columns = [TableColumn(field=c, title=c, width=20, formatter=HTMLTemplateFormatter(template=template)) for c in ['a', 'b']]

table = DataTable(source=ColumnDataSource(df), columns=columns)

l = layout([[table]])

curdoc().add_root(l)

show(l)

python - 如何将HoverTool添加到数据表(Bokeh,Python)-LMLPHP

稍微好一点的方法(虽然会更痛苦)将使用具有某些CSS样式的其他模板。
template = """<div class="tooltip-parent"><div class="tooltipped"><%= value %></div><div class="tooltip-text"><%= value %></div></div>"""

desc.html :
<style>
.tooltip-parent {
    width: 100%;
}

.tooltipped {
    overflow: hidden;
    width: 100%;
}

.tooltip-text {
    visibility: hidden;
    width: 250px;
    background-color: rgba(0, 0, 0, 1);
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 5px;
    position: relative;
    z-index: 1;
    top: 100%;
    left: 0%;
    white-space: initial;
    text-align: left;
}

.tooltipped:hover + .tooltip-text {
    visibility: visible;
}

div.bk-slick-cell {
    overflow: visible !important;
    z-index: auto !important;
}
</style>

<h1>Tooltip demo</h1>

python - 如何将HoverTool添加到数据表(Bokeh,Python)-LMLPHP

关于python - 如何将HoverTool添加到数据表(Bokeh,Python),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34169264/

10-09 16:11