注意
转到末尾以下载完整的示例代码。
Zorder 演示#
艺术家的绘制顺序由其 zorder
属性确定,该属性是一个浮点数。具有较高 zorder
的艺术家会绘制在顶层。您可以通过设置其 zorder
来更改单个艺术家的顺序。默认值取决于艺术家的类型
艺术家 |
Z 顺序 |
---|---|
0 |
|
1 |
|
|
2 |
主刻度 |
2.01 |
|
3 |
5 |
对绘图方法的任何调用都可以显式设置该特定项的 zorder 值。
注意
set_axisbelow
和 rcParams["axes.axisbelow"]
(默认值:'line'
)是设置刻度和网格线 zorder 的便捷助手。
绘制是每次按 Axes
完成的。如果您有重叠的坐标轴,则第二个坐标轴的所有元素都绘制在第一个坐标轴的顶部,而与它们的相对 zorder 无关。
以下示例包含由 plot()
创建的 Line2D
以及由 scatter()
创建的点(PatchCollection
)。因此,默认情况下,点在线下方(第一个子图)。在第二个子图中,显式设置 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()
脚本的总运行时间:(0 分 1.299 秒)