我的问题是,当我创建多个带子图的图,并且x_axis是共享的,x_axis的后缀不显示。
我使用的代码是这样的。
import plotly.graph_objects as go
fig = make_subplots(rows=2, cols=1, shared_xaxes=True, vertical_spacing=0.05)
fig.add_trace(
go.Bar(x=[1, 2, 3], y=[4, 5, 6]),
row=1, col=1
)
fig.add_trace(
go.Bar(x=[2, 3, 4], y=[5, 6, 7]),
row=2, col=1
)
fig.update_layout(height=600, width=800, title_text=“Subplots”, xaxis=dict(ticksuffix="%"))
fig.show()
谁能帮帮我, 我做错了什么?
先谢谢你
你的目标图是这样的吗?
import plotly.graph_objects as go
from plotly.subplots import make_subplots
fig = make_subplots(rows=2, cols=1, shared_xaxes=True, vertical_spacing=0.05)
fig.add_trace(
go.Bar(x=[1, 2, 3], y=[4, 5, 6]),
row=1, col=1
)
fig.add_trace(
go.Bar(x=[2, 3, 4], y=[5, 6, 7]),
row=2, col=1
)
fig.update_layout(height=600, width=800, title_text='Subplots')
fig.update_xaxes(dict(ticksuffix="%"))
fig.show()