隐藏散景图中的图例

时间:2016-08-25 09:19:53

标签: python plot bokeh

LS, 散景图自动生成绘图的图例。 如何隐藏(不显示)散景图中的图例? 我试过了:legend = 'none'。但没有成功。 感谢

2 个答案:

答案 0 :(得分:7)

如果我可以稍微扩展一下 - legend=False是使Bokeh图例不可见的正确方法,但它在绘图本身的创建中使用,而不是作为属性调用情节对象。我的意思是,写

from bokeh.charts import Scatter
myPlot = Scatter(foo, bar, legend=False)

而不是

from bokeh.charts import Scatter
myPlot = Scatter(foo, bar)
myPlot.legend=False.

答案 1 :(得分:-1)

p1.line(x=data['col'].astype(str), y=data['col'],
     color='black',legend_label='legend')
p1.legend.visible=False 

最后一行隐藏图例。