使用 plotly express 时,我们可以像下面的帖子那样设置小刻度
但是,当使用 go.Figure() 时,它像下面的手册一样尝试,但出现错误,那么如何在 go.Figure() 中为日期轴设置次刻度?谢谢
https://plotly.com/python/time-series/
fig.update_xaxes(autorange=False,range=[start_date_dts_heatmap_prod,end_date_dts_heatmap_prod_1],
tickfont=dict(size=tick_font_size),
ticklabelmode= "period",
tickcolor= "black",
ticklen=10,
minor=dict(
ticklen=4,
dtick=7*24*60*60*1000,
tick0=start_date_dts_heatmap_prod,
griddash='dot',
gridcolor='white'),
row=3,col=1
) #autorange=False,range=y_range,row=2,col=1
ValueError: Invalid property specified for object of type plotly.graph_objs.layout.XAxis: 'minor'
Did you mean "mirror"?