@@ -70,7 +70,7 @@ def __init__(
7070 ----------
7171 fig : Figure
7272 The parent figure.
73- rect : tuple (left, bottom, width, height), default: None.
73+ rect : tuple (left, bottom, width, height), default: (0, 0, 1, 1)
7474 The ``(left, bottom, width, height)`` Axes position.
7575 elev : float, default: 30
7676 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, *,
20492049 - 'auto': If the points all lie on the same 3D plane, 'polygon' is
20502050 used. Otherwise, 'quad' is used.
20512051
2052- facecolors : list of :mpltype:`color`, default: None
2052+ facecolors : :mpltype:`color` or list of :mpltype:`color`, optional
20532053 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.
20552056
20562057 shade : bool, default: None
20572058 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,
29432944 - A 2D array in which the rows are RGB or RGBA.
29442945
29452946 For more details see the *c* argument of `~.axes.Axes.scatter`.
2946- depthshade : bool, default: None
2947+ depthshade : bool, default: :rc:`axes3d.depthshade`
29472948 Whether to shade the scatter markers to give the appearance of
29482949 depth. Each call to ``scatter()`` will perform its depthshading
29492950 independently.
2950- If None, use the value from rcParams['axes3d.depthshade'].
29512951
2952- depthshade_minalpha : float, default: None
2952+ depthshade_minalpha : float, default: :rc:`axes3d.depthshade_minalpha`
29532953 The lowest alpha value applied by depth-shading.
2954- If None, use the value from rcParams['axes3d.depthshade_minalpha'].
29552954
29562955 .. versionadded:: 3.11
29572956
@@ -3627,12 +3626,12 @@ def errorbar(self, x, y, z, zerr=None, yerr=None, xerr=None, fmt='',
36273626 Use 'none' (case-insensitive) to plot errorbars without any data
36283627 markers.
36293628
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
36323631 line connecting the markers.
36333632
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
36363635 the current style is used.
36373636
36383637 capsize : float, default: :rc:`errorbar.capsize`
0 commit comments