We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4b3f0cb + f1aa13a commit 6c953e8Copy full SHA for 6c953e8
1 file changed
lib/matplotlib/axes/_base.py
@@ -3157,13 +3157,18 @@ def set_axisbelow(self, b):
3157
b : bool or 'line'
3158
Possible values:
3159
3160
- - *True* (zorder = 0.5): Ticks and gridlines are below all Artists.
+ - *True* (zorder = 0.5): Ticks and gridlines are below patches and
3161
+ lines, though still above images.
3162
- 'line' (zorder = 1.5): Ticks and gridlines are above patches
3163
(e.g. rectangles, with default zorder = 1) but still below lines
3164
and markers (with their default zorder = 2).
3165
- *False* (zorder = 2.5): Ticks and gridlines are above patches
3166
and lines / markers.
3167
3168
+ Notes
3169
+ -----
3170
+ For more control, call the `~.Artist.set_zorder` method of each axis.
3171
+
3172
See Also
3173
--------
3174
get_axisbelow
0 commit comments