当前位置: 首页>>代码示例>>Python>>正文


Python HoverTool.line_policy方法代码示例

本文整理汇总了Python中bokeh.models.HoverTool.line_policy方法的典型用法代码示例。如果您正苦于以下问题:Python HoverTool.line_policy方法的具体用法?Python HoverTool.line_policy怎么用?Python HoverTool.line_policy使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在bokeh.models.HoverTool的用法示例。


在下文中一共展示了HoverTool.line_policy方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: show_points

# 需要导入模块: from bokeh.models import HoverTool [as 别名]
# 或者: from bokeh.models.HoverTool import line_policy [as 别名]
def show_points(pointsList, w=400, h=400):

    # Ensure it's a list going in
    if type(pointsList) is not list:
        pointsList = [pointsList]

    # Create the hover tool
    hover = HoverTool(tooltips=[("x", "@x"),
                                ("y", "@y")])
    hover.line_policy = "nearest"

    # Make the figure
    fig = figure(plot_width=w, plot_height=h)
    fig.add_tools(hover)

    colors = ['red', 'orange', 'yellow', 'green',
              'blue', 'purple', 'indigo', 'violet']

    # Plot all the points
    for i, points in enumerate(pointsList):

        # Grab the color
        color = colors[i % len(colors)]

        # Plot the vertices
        fig.x(x=points[:, 0],
              y=points[:, 1],
              size=6, line_width=2, line_color=color)

        # Plot the lines
        x, y = [np.hstack([points[:, z], points[0, z]]) for z in [0, 1]]
        fig.line(x=x,
                 y=y,
                 line_width=2,
                 line_color=color)

        # Plot the point index next to the point
        fig.text(x=points[:, 0],
                 y=points[:, 1],
                 text=range(points.shape[0]))

    # Show the plot
    show(fig)
开发者ID:SuperSumo,项目名称:keyboard,代码行数:45,代码来源:_helpers.py


注:本文中的bokeh.models.HoverTool.line_policy方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。