笔记
单击此处 下载完整的示例代码
轴线样式#
此示例显示了轴样式的一些配置。
注意:mpl_toolkits.axisartist
轴类可能会让新用户感到困惑。如果唯一的目的是在轴的末端获得箭头,请查看Centered spins with arrows
示例。
from mpl_toolkits.axisartist.axislines import AxesZero
import matplotlib.pyplot as plt
import numpy as np
fig = plt.figure()
ax = fig.add_subplot(axes_class=AxesZero)
for direction in ["xzero", "yzero"]:
# adds arrows at the ends of each axis
ax.axis[direction].set_axisline_style("-|>")
# adds X and Y-axis from the origin
ax.axis[direction].set_visible(True)
for direction in ["left", "right", "bottom", "top"]:
# hides borders
ax.axis[direction].set_visible(False)
x = np.linspace(-0.5, 1., 100)
ax.plot(x, np.sin(x*np.pi))
plt.show()