图例和x标签出现问题

时间:2019-01-23 19:34:33

标签: python-3.x matplotlib plot legend

我的情节差不多,但是有问题。第一个:x标签不显示。第二个问题:我不能在图例中添加第二行的名称。我只有一个名字(关闭),我还需要'KGHM'。

fig, ax = plt.subplots()
ax.plot(x,y)

ax2 = ax.twinx()
ax2.plot(x1,y1, 'y-')

myFmt = DateFormatter("%d-%m-%y")
ax.xaxis.set_major_formatter(myFmt)

fig.autofmt_xdate()
plt.tight_layout()

plt.xlabel('PLN',size=10)
plt.ylabel('Points',size=10)
plt.title('KGHM')
ax.grid(True)

ax.legend()

plt.show()

enter image description here

感谢帮助!

0 个答案:

没有答案