[holoviews文档中提到可以隐藏或移动Bokeh工具栏:http://holoviews.org/user_guide/Plotting_with_Bokeh.htmlbokeh文档显示了如何自动隐藏工具栏,使其仅在鼠标悬停时显示。
使用全息视图时是否可以自动隐藏工具栏,因为它不允许我传递toolbar='autohide'
之类的选项>
任何帮助都将受到欢迎。
fundYear.hvplot.bar(
x='year',
y='fundingReq',
rot=90,
).opts(
toolbar='left',
title="Funding Requested per Year",
yformatter='$%f',
)
[holoviews文档中提到可以隐藏或移动Bokeh工具栏:http://holoviews.org/user_guide/Plotting_with_Bokeh.html bokeh文件显示了如何自动隐藏工具栏,以便...]]
1)可以使用hooks设置自动隐藏。
使用挂钩,您可以在绘图之前自定义绘图。