Bokeh自定义工具提示{safe}标签不显示任何内容

时间:2017-01-11 01:34:36

标签: javascript python plot tooltip bokeh

使用最新的Bokeh和py35运行以下Bokeh code时,@fonts{safe}根本不会显示在工具提示中。但是,当{safe}被删除时@fonts出现(当然不会呈现)。有谁知道我可以做些什么来让{safe}工作?或者还有另一种方法可以在工具提示中进行HTML渲染吗?

from bokeh.plotting import figure, output_file, show, ColumnDataSource
from bokeh.models import HoverTool

output_file("toolbar.html")

source = ColumnDataSource(
        data=dict(
            x=[1, 2, 3, 4, 5],
            y=[2, 5, 8, 2, 7],
            desc=['A', 'b', 'C', 'd', 'E'],
            imgs = [
                'http://bokeh.pydata.org/static/snake.jpg',
                'http://bokeh.pydata.org/static/snake2.png',
                'http://bokeh.pydata.org/static/snake3D.png',
                'http://bokeh.pydata.org/static/snake4_TheRevenge.png',
                'http://bokeh.pydata.org/static/snakebite.jpg'
            ],
            fonts=['<i>italics</i>',
                   '<pre>pre</pre>',
                   '<b>bold</b>',
                   '<small>small</small>',
                   '<del>del</del>'
                   ]
        )
    )

hover = HoverTool(
        tooltips="""
        <div>
            <div>
                <img
                    src="@imgs" height="42" alt="@imgs" width="42"
                    style="float: left; margin: 0px 15px 15px 0px;"
                    border="2"
                ></img>
            </div>
            <div>
                <span style="font-size: 17px; font-weight: bold;">@desc</span>
                <span style="font-size: 15px; color: #966;">[$index]</span>
            </div>
            <div>
                <span>@fonts{safe}</span>
            </div>
            <div>
                <span style="font-size: 15px;">Location</span>
                <span style="font-size: 10px; color: #696;">($x, $y)</span>
            </div>
        </div>
        """
    )

p = figure(plot_width=400, plot_height=400, tools=[hover],
           title="Mouse over the dots")

p.circle('x', 'y', size=20, source=source)

show(p)

1 个答案:

答案 0 :(得分:2)

那是a bug in the code。我将更改建议here并创建了此pull request。截至2017年1月11日,该修补程序无法通过pip安装,但如果您按照@bryevdv's advice进行操作,则可以通过conda developer channel进行安装,或者像我通过dev guide一样从头开始构建