笔记
单击此处 下载完整的示例代码
佐德演示#
艺术家的绘制顺序由他们的zorder
属性决定,该属性是一个浮点数。较高的艺术家zorder
被绘制在顶部。您可以通过设置他们的zorder
. 默认值取决于艺术家的类型:
艺术家 |
Z顺序 |
---|---|
图片 ( |
0 |
1 |
|
|
2 |
主要刻度 |
2.01 |
|
3 |
5 |
对绘图方法的任何调用都可以显式地为该特定项目的 zorder 设置一个值。
笔记
set_axisbelow
和rcParams["axes.axisbelow"]
(默认值'line'
:)是设置刻度线和网格线的 zorder 的便捷助手。
绘图是Axes
一次完成的。如果您有重叠的 Axes,则第二个 Axes 的所有元素都绘制在第一个 Axes 的顶部,而与它们的相对 zorder 无关。
以下示例包含由Line2D
创建的aplot()
和由 创建的点 (a PatchCollection
) scatter()
。因此,默认情况下,点位于线下方(第一个子图)。在第二个子图中,zorder
明确设置为将点移动到线的顶部。
fig, (ax1, ax2) = plt.subplots(1, 2, figsize=(6, 3.2))
ax1.plot(x, y, 'C3', lw=3)
ax1.scatter(x, y, s=120)
ax1.set_title('Lines on top of dots')
ax2.plot(x, y, 'C3', lw=3)
ax2.scatter(x, y, s=120, zorder=2.5) # move dots on top of line
ax2.set_title('Dots on top of lines')
plt.tight_layout()
许多创建可见对象的函数都接受一个zorder
参数。或者,您可以set_zorder()
稍后调用创建的对象。
x = np.linspace(0, 7.5, 100)
plt.rcParams['lines.linewidth'] = 5
plt.figure()
plt.plot(x, np.sin(x), label='zorder=2', zorder=2) # bottom
plt.plot(x, np.sin(x+0.5), label='zorder=3', zorder=3)
plt.axhline(0, label='zorder=2.5', color='lightgrey', zorder=2.5)
plt.title('Custom order of elements')
l = plt.legend(loc='upper right')
l.set_zorder(2.5) # legend between blue and orange line
plt.show()