Answers for "how to add legend on side of the chart python"

0

how to add legend on side of the chart python

import matplotlib.pyplot as plt
import numpy as np

x = np.arange(10)

fig = plt.figure()
ax = plt.subplot(111)

for i in xrange(5):
    ax.plot(x, i * x, label='$y = %ix$' % i)
 
ax.legend(bbox_to_anchor=(1.1, 1.05))  # ← add this line

plt.show()
Posted by: Guest on January-25-2022

Code answers related to "how to add legend on side of the chart python"

Python Answers by Framework

Browse Popular Code Answers by Language