我似乎無法從散景條形圖中刪除工具欄。儘管設置工具參數無(或假或「」)我總是結束與背景虛化的標誌和一個灰色的線,例如與此代碼:Python散景:從圖表中刪除工具欄
from bokeh.charts import Bar, output_file, show
# prepare some data
data = {"y": [6, 7, 2, 4, 5], "z": [1, 5, 12, 4, 2]}
# output to static HTML file
output_file("bar.html")
# create a new line chat with a title and axis labels
p = Bar(data, cat=['C1', 'C2', 'C3', 'D1', 'D2'], title="Bar example",
xlabel='categories', ylabel='values', width=400, height=400,
tools=None)
# show the results
show(p)
然而,當我嘗試用背景虛化情節一樣,它運行完美,工具欄消失了,例如與此代碼:
from bokeh.plotting import figure, output_file, show
output_file("line.html")
p = figure(plot_width=400, plot_height=400, toolbar_location=None)
# add a line renderer
p.line([1, 2, 3, 4, 5], [6, 7, 2, 4, 5], line_width=2)
show(p)
有誰知道我在做什麼錯了?
看起來像p.toolbar.logo =無現在正確 – derchambers
如何從gridPlot中移除工具欄,從中刪除沒有效果,刪除gridplot是不可能的:AttributeError:'Column'對象沒有屬性'toolbar' – user3598726