I want to set xticks in each subplot with a step of 1 day within a fixed x-axis range limit, ensuring that the distance between bars is also zero. Below is the current output I am getting.
for i in range(1, num_rows + 1):
for j in range(1, num_cols + 1):
fig.update_xaxes(range=[“2014-10-01”,“2014-10-01”],row=i, col=j, dtick=‘D1’,
tickmode=‘linear’,
tickfont=dict(size=8))
fig.update_yaxes(range=[0,250],tickcolor=‘black’, row=i, col=j)
This is the code where I tried to customize axis for each subplot