本文整理汇总了Python中bokeh.models.HoverTool.name方法的典型用法代码示例。如果您正苦于以下问题:Python HoverTool.name方法的具体用法?Python HoverTool.name怎么用?Python HoverTool.name使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类bokeh.models.HoverTool
的用法示例。
在下文中一共展示了HoverTool.name方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: make_plot
# 需要导入模块: from bokeh.models import HoverTool [as 别名]
# 或者: from bokeh.models.HoverTool import name [as 别名]
def make_plot(yscale='linear'):
# configure the tools
width_zoom={'dimensions':['width']}
tools = [tool(**width_zoom) for tool in [BoxZoomTool, WheelZoomTool]]
hover_pos = HoverTool(
names=['buy','sell'],
tooltips=[
('Position','@pos'),
('Date','@date'),
('Price','@price')
]
)
hover_pos.name = 'Postions'
tools.extend([PanTool(), hover_pos, ResetTool(), CrosshairTool()])
# prepare plot
p = Figure(plot_height=600, plot_width=800, title="Moving Average Positions",
x_axis_type='datetime', y_axis_type=yscale, tools=tools)
p.line(x='date', y='price', alpha=0.3, color='Black', line_width=2, source=source, legend='Close', name='price')
p.line(x='date', y='mav_short', color='DarkBlue', line_width=2, source=source, legend='Short MAV')
p.line(x='date', y='mav_long', color='FireBrick', line_width=2, source=source, legend='Long MAV')
p.inverted_triangle(x='x', y='y', color='Crimson', size=20, alpha=0.7, source=sell, legend='Sell', name='sell')
p.triangle(x='x', y='y', color='ForestGreen', size=20, alpha=0.7, source=buy, legend='Buy', name='buy')
return p