I'm trying to draw a line chart with a "date_range" date list as x-axis and a list of integers "balance" as y axis
But when plot it omit some dates.
fig, ax = plt.subplots(figsize = (4, 7), dpi = 70, constrained_layout = True)
ax = plt.plot(date_range, balance)
There are only 7 dates of 17, how i plot all data?