I have a plotly graph where the axis is dates made like this
fig = px.line(df, x='date', y='supply')
fig.update_layout(xaxis_tickformat = '%b %-d, %Y')
originally the axis labels had a time row 00:00 and 12:00 but I got rid of that because the date data doesn't have times in.
now the problem is there's 2 ticks for every date. I guess this is because it's using a datetime axis but there's no times. Getting rid of the time labels didn't really solve anything. how can I get 1 tick per date?


