密谋:如何设置零线不透明度?

时间:2020-06-09 16:04:14

标签: python r graph plotly axes

有没有办法改变图中零线的不透明度?我试图在我的图上为我的y轴叠加零线,以使其不会出现在后面,但其不透明度/ alpha为50%。这可能吗?

1 个答案:

答案 0 :(得分:1)

您可以将rgba colorfig.update_xaxes()和/或fig.update_yaxes()一起使用,以获得任何具有所需不透明度的颜色:

enter image description here

完整代码:

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()