@@ -70,7 +70,7 @@ def __init__(
70
70
----------
71
71
fig : Figure
72
72
The parent figure.
73
- rect : tuple (left, bottom, width, height), default: None.
73
+ rect : tuple (left, bottom, width, height), default: (0, 0, 1, 1)
74
74
The ``(left, bottom, width, height)`` Axes position.
75
75
elev : float, default: 30
76
76
The elevation angle in degrees rotates the camera above and below
@@ -2049,9 +2049,10 @@ def fill_between(self, x1, y1, z1, x2, y2, z2, *,
2049
2049
- 'auto': If the points all lie on the same 3D plane, 'polygon' is
2050
2050
used. Otherwise, 'quad' is used.
2051
2051
2052
- facecolors : list of :mpltype:`color`, default: None
2052
+ facecolors : :mpltype:`color` or list of :mpltype:`color`, optional
2053
2053
Colors of each individual patch, or a single color to be used for
2054
- all patches.
2054
+ all patches. If not given, the next color from the patch color
2055
+ cycle is used.
2055
2056
2056
2057
shade : bool, default: None
2057
2058
Whether to shade the facecolors. If *None*, then defaults to *True*
@@ -2943,15 +2944,13 @@ def scatter(self, xs, ys, zs=0, zdir='z', s=20, c=None, depthshade=None,
2943
2944
- A 2D array in which the rows are RGB or RGBA.
2944
2945
2945
2946
For more details see the *c* argument of `~.axes.Axes.scatter`.
2946
- depthshade : bool, default: None
2947
+ depthshade : bool, default: :rc:`axes3d.depthshade`
2947
2948
Whether to shade the scatter markers to give the appearance of
2948
2949
depth. Each call to ``scatter()`` will perform its depthshading
2949
2950
independently.
2950
- If None, use the value from rcParams['axes3d.depthshade'].
2951
2951
2952
- depthshade_minalpha : float, default: None
2952
+ depthshade_minalpha : float, default: :rc:`axes3d.depthshade_minalpha`
2953
2953
The lowest alpha value applied by depth-shading.
2954
- If None, use the value from rcParams['axes3d.depthshade_minalpha'].
2955
2954
2956
2955
.. versionadded:: 3.11
2957
2956
@@ -3627,12 +3626,12 @@ def errorbar(self, x, y, z, zerr=None, yerr=None, xerr=None, fmt='',
3627
3626
Use 'none' (case-insensitive) to plot errorbars without any data
3628
3627
markers.
3629
3628
3630
- ecolor : :mpltype:`color`, default: None
3631
- The color of the errorbar lines. If None , use the color of the
3629
+ ecolor : :mpltype:`color`, optional
3630
+ The color of the errorbar lines. If not given , use the color of the
3632
3631
line connecting the markers.
3633
3632
3634
- elinewidth : float, default: None
3635
- The linewidth of the errorbar lines. If None , the linewidth of
3633
+ elinewidth : float, optional
3634
+ The linewidth of the errorbar lines. If not given , the linewidth of
3636
3635
the current style is used.
3637
3636
3638
3637
capsize : float, default: :rc:`errorbar.capsize`
0 commit comments