diff --git a/docs/examples/iv-modeling/plot_singlediode.py b/docs/examples/iv-modeling/plot_singlediode.py index 1cdda9f348..69c0079a20 100644 --- a/docs/examples/iv-modeling/plot_singlediode.py +++ b/docs/examples/iv-modeling/plot_singlediode.py @@ -114,6 +114,8 @@ # mark the MPP plt.plot([v_mp], [i_mp], ls='', marker='o', c='k') +plt.xlim(left=0) +plt.ylim(bottom=0) plt.legend(loc=(1.0, 0)) plt.xlabel('Module voltage [V]') plt.ylabel('Module current [A]')