'Line graph from dataframe, the last tick is not visible

I am trying to plot a line graph with dataframe but the last tick is not visible. What should I do to make the last tick is visible?

enter image description here

line_df = pd.DataFrame({
    'value': value
}, index=date)


line_df.plot.line(figsize=(10,7), legend=None)


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source