有没有办法改变图中零线的不透明度?我试图在我的图上为我的y轴叠加零线,以使其不会出现在后面,但其不透明度/ alpha为50%。这可能吗?
答案 0 :(得分:1)
您可以将rgba color与fig.update_xaxes()
和/或fig.update_yaxes()
一起使用,以获得任何具有所需不透明度的颜色:
完整代码:
import plotly.express as px
fig = px.line(y=[1, -1], x=[-1,1])
fig.update_xaxes(zeroline=True, zerolinewidth=6, zerolinecolor='rgba(0,255,0,0.5)')
fig.update_yaxes(zeroline=True, zerolinewidth=6, zerolinecolor='rgba(0,0,255,0.5)')
fig.show()