我怎么不显示这个图表摘录?

时间:2016-02-10 10:29:45

标签: python matplotlib

我已经绘制了一幅图,如下图所示。

如何不显示红框所包围的位?

enter image description here 2

代码如下:

import matplotlib.dates as md    
import matplotlib.pyplot as plt

fig = plt.figure()

ax=fig.add_subplot(1,1,1)

plt.plot(ListTime,ListLeiture)

hours = md.HourLocator(byhour=range(8,16,1))

fmt = md.DateFormatter('%d\n%H:%m:%S')

ax.xaxis.set_major_locator(hours)

ax.xaxis.set_major_formatter(fmt)

fig.autofmt_xdate(bottom=0.2, rotation=45)

ax.grid()
plt.show()

0 个答案:

没有答案