注意
到末尾下载完整示例代码。
将标签居中放置于刻度之间#
刻度标签相对于其关联的刻度进行对齐。对齐方式“center”、“left”或“right”可以通过水平对齐属性进行控制。
for label in ax.get_xticklabels():
label.set_horizontalalignment('right')
然而,没有直接的方法将标签居中放置于刻度之间。为了模拟这种行为,可以在主刻度之间的次刻度上放置标签,并隐藏主刻度标签和次刻度。
这是一个将月份标签居中放置于刻度之间的示例。

import matplotlib.pyplot as plt
import matplotlib.cbook as cbook
import matplotlib.dates as dates
import matplotlib.ticker as ticker
# Load some financial data; Google's stock price
r = cbook.get_sample_data('goog.npz')['price_data']
r = r[-250:] # get the last 250 days
fig, ax = plt.subplots()
ax.plot(r["date"], r["adj_close"])
ax.xaxis.set_major_locator(dates.MonthLocator())
# 16 is a slight approximation since months differ in number of days.
ax.xaxis.set_minor_locator(dates.MonthLocator(bymonthday=16))
ax.xaxis.set_major_formatter(ticker.NullFormatter())
ax.xaxis.set_minor_formatter(dates.DateFormatter('%b'))
# Remove the tick lines
ax.tick_params(axis='x', which='minor', tick1On=False, tick2On=False)
# Align the minor tick label
for label in ax.get_xticklabels(minor=True):
label.set_horizontalalignment('center')
imid = len(r) // 2
ax.set_xlabel(str(r["date"][imid].item().year))
plt.show()