如何使用 bqplot/pyplot 移除图例周围的边框
How to remove the frame around the legend with bqplot/pyplot
我敢肯定,这是一个很容易回答的问题。我正在使用 bqplot(与 pyplot),默认情况下,图例被框起来。所以我的问题是:如何删除框架?使用 matplotlib,我知道我可以简单地使用 plt.legend(frameon=False),你知道 bqplot 的直接等价物吗?
这段代码看起来像这样:
import bqplot.pyplot as pl
plot_test = pl.figure()
test = pl.plot(x,y, colors = ["white"],labels=['blabla'])
pl.legend()
pl.show()
提前致谢!
去除边框最简单的方法是将图例边框宽度更改为 0。
plot_test.legend_style = {'stroke-width': 0}
Bqplot 图例样式使用 SVG CSS 样式属性。其他图例样式示例包括.....
plot_test.legend_style = {
'fill': 'white' ,
'stroke' : 'blue' ,
'stroke-width':3,
'opacity':0.7
}
我敢肯定,这是一个很容易回答的问题。我正在使用 bqplot(与 pyplot),默认情况下,图例被框起来。所以我的问题是:如何删除框架?使用 matplotlib,我知道我可以简单地使用 plt.legend(frameon=False),你知道 bqplot 的直接等价物吗?
这段代码看起来像这样:
import bqplot.pyplot as pl
plot_test = pl.figure()
test = pl.plot(x,y, colors = ["white"],labels=['blabla'])
pl.legend()
pl.show()
提前致谢!
去除边框最简单的方法是将图例边框宽度更改为 0。
plot_test.legend_style = {'stroke-width': 0}
Bqplot 图例样式使用 SVG CSS 样式属性。其他图例样式示例包括.....
plot_test.legend_style = {
'fill': 'white' ,
'stroke' : 'blue' ,
'stroke-width':3,
'opacity':0.7
}