Legenda Teks Warna Matplotlib
import matplotlib.pyplot as plt
l = plt.legend()
for text in l.get_texts():
text.set_color("red")
Exuberant Eel
import matplotlib.pyplot as plt
l = plt.legend()
for text in l.get_texts():
text.set_color("red")