Matplotlib 在自定义图例中不显示影线

Mar*_* Z. 6 python patch handles matplotlib legend

我创建了一个自定义图例,但他没有显示补丁的影线。怎么了?

import matplotlib.pyplot as plt
from matplotlib.patches import Patch
from pylab import *
t = arange(0.0, 2.0, 0.01)
s = sin(2*pi*t)
fig1 = plt.figure(1,(10,10))
plt.plot(t, s)
plt.xlabel('time (s)')
plt.ylabel('voltage (mV)')
plt.title('About as simple as it gets, folks')
plt.grid(True)
far_patch = Patch(color=[168/256,175/256,175/256], label='Farshore')
near_patch = Patch(color=[168/256,175/256,175/256], label='Nearshore',     hatch ='o')
legend=plt.legend(handles=[far_patch, near_patch],loc='upper left',     handlelength=1, handleheight=1,labelspacing=0,    fontsize=8,borderaxespad=0.3,handletextpad=0.2)

frame = legend.get_frame()
frame.set_edgecolor('none')

figureName='test'

plt.savefig(figureName+'.pdf',bbox_inches='tight',dpi=fig1.dpi)
plt.show()
Run Code Online (Sandbox Code Playgroud)

谢谢

Rut*_*ies 6

来自Patch对象的颜色关键字将覆盖 facecolor 和 edgecolor。所以它可能会正确显示舱口,但与补丁颜色相同。具体设置facecolor将解决它,并且edgecolor可以用于为舱口着色。

所以尝试:

near_patch = Patch(facecolor=[168/256,175/256,175/256], 
                   label='Nearshore', hatch ='o')
Run Code Online (Sandbox Code Playgroud)

在此处输入图片说明

linewidth如果您只想看到影线,则可以将 设置为零。