我无法调整轴的范围:
我有
layout1= go.Layout(title=go.layout.Title(text="A graph",x=0.5),
xaxis={'title':'y[m]','range':[-10,10]},
yaxis={'title':'x[m]', 'side':'right'})
# switch the x- and y-coordinates
point_plot=[
go.Scatter(y=[3],x=[1],name="V0"),
go.Scatter(y=[5],x=[2],name="GT"),
go.Scatter(y=[0],x=[0],name="egoCar")
]
fig = go.Figure(data=point_plot, layout=layout1)
# reverse the range of the xaxis (which contains the y values)
fig.update_xaxes(autorange="reversed")
fig.show()
如您所见,我希望 Y 轴(现在是水平的)从 -10 变为 10 但是,我得到
所以显然范围不工作。我想这是因为“autorange”,但我需要这个,因为 ax Y 需要反转。
我怎样才能做到这一点?
喵喔喔
相关分类