要自定义图例填充样式,可以使用 legend
函数的 facecolor
参数来指定填充颜色。下面是一个示例代码:
import matplotlib.pyplot as plt
x = [1, 2, 3, 4, 5]
y = [1, 4, 9, 16, 25]
plt.plot(x, y, label='Line')
plt.legend(facecolor='lightblue')
plt.show()
在上面的示例中,我们使用 plt.legend(facecolor='lightblue')
来设置图例的填充色为浅蓝色。您可以根据需要更改颜色或添加其他自定义样式。