情节4.1.1
from plotly.subplots import make_subplots
import plotly.graph_objects as go
x = ["2019-09-01", "2019-09-02", "2019-09-04"]
fig = make_subplots(rows=2, cols=1, shared_xaxes=True)
fig.add_trace(go.Bar(x=x, y=[1, 2, 3], name="1st"), row=1, col=1)
fig.add_trace(go.Bar(x=x, y=[3, 2, 1], name="2nd"), row=2, col=1)
fig.update_layout(xaxis={'type': 'category'})
fig.show()
下面,第一个子图在category类型的xaxis上正确显示,但第二个子图不希望地粘在date类型的xaxis上。
幕布斯7119047
相关分类