猿问

不合需要地绘制了日期字符串的共享 xaxis

情节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上。

尚方宝剑之说
浏览 111回答 1
1回答

幕布斯7119047

update_xaxes代替update_layout(xaxis)解决了这个问题。fig.update_xaxes(type='category', row=1, col=1)fig.update_xaxes(type='category', row=2, col=1)
随时随地看视频慕课网APP

相关分类

Python
我要回答