web-dev-qa-db-ja.com

Pythonボケ:チャートからツールバーを削除

メンテナからの注意:この質問の詳細はbokeh.charts AP​​Iは廃止され、数年前に削除されました。最近のボケでは、toolbar_location

p = figure(toolbar_location=None)


廃止:

ボケの棒グラフからツールバーを削除できないようです。 tools引数をNone(またはFalseまたは '')私はいつもボケのロゴと灰色の線で終わります、例えばこのコードで:

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)

ただし、ボケplotを使用して同じことを試みると、完全に正常に機能し、ツールバーがなくなります。このコードで:

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)

誰かが私が間違っていることを知っていますか?

25
Arkady

ロゴとツールバーを削除したい場合は、次の操作を実行できます。

p.toolbar.logo = None
p.toolbar_location = None

これで問題が解決することを願っています

45
merqurio

任意のボケプロットオブジェクトで設定できます。

p.toolbar_location = None
4
Luke Canavan