Zorder 演示#

艺术家的绘制顺序由其 zorder 属性决定,该属性是浮点数。 zorder 较高的艺术家绘制在顶部。您可以通过设置其 zorder 来更改各个艺术家的顺序。默认值取决于艺术家的类型

艺术家

Z 顺序

图像 (AxesImage, FigureImage, BboxImage)

0

Patch, PatchCollection

1

Line2D, LineCollection(包括副刻度线、网格线)

2

主刻度线

2.01

Text(包括坐标轴标签和标题)

3

图例

5

任何对绘图方法的调用都可以显式地为该特定项目的 zorder 设置一个值。

注意

set_axisbelowrcParams["axes.axisbelow"](默认值:'line')是用于设置刻度线和网格线 zorder 的便捷助手。

绘制是在一次一个 Axes 的基础上进行的。如果您有重叠的 Axes,则第二个 Axes 的所有元素都绘制在第一个 Axes 的顶部,而不管它们的相对 zorder 如何。

import matplotlib.pyplot as plt
import numpy as np

r = np.linspace(0.3, 1, 30)
theta = np.linspace(0, 4*np.pi, 30)
x = r * np.sin(theta)
y = r * np.cos(theta)

以下示例包含由 Line2D 创建的 plot() 和由 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()
Lines on top of dots, Dots on top of lines

许多用于创建可见对象的函数都接受一个 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()
Custom order of elements

由 Sphinx-Gallery 生成的图库