@@ -4029,7 +4029,7 @@ def scatter(self, x, y, s=None, c=None, marker=None, cmap=None, norm=None,
4029
4029
The marker size in points**2.
4030
4030
Default is ``rcParams['lines.markersize'] ** 2``.
4031
4031
4032
- c : color, sequence, or sequence of color, optional, default: 'b'
4032
+ c : color, sequence, or sequence of color, optional
4033
4033
The marker color. Possible values:
4034
4034
4035
4035
- A single color format string.
@@ -4045,10 +4045,18 @@ def scatter(self, x, y, s=None, c=None, marker=None, cmap=None, norm=None,
4045
4045
matching will have precedence in case of a size matching with *x*
4046
4046
and *y*.
4047
4047
4048
- marker : `~matplotlib.markers.MarkerStyle`, optional, default: 'o'
4048
+ Defaults to ``None``. In that case the marker color is determined
4049
+ by the value of ``color``, ``facecolor`` or ``facecolors``. In case
4050
+ those are not specified or ``None``, the marker color is determined
4051
+ by the next color of the ``Axes``' current "shape and fill" color
4052
+ cycle. This cycle defaults to :rc:`axes.prop_cycle`.
4053
+
4054
+ marker : `~matplotlib.markers.MarkerStyle`, optional
4049
4055
The marker style. *marker* can be either an instance of the class
4050
4056
or the text shorthand for a particular marker.
4051
- See `~matplotlib.markers` for more information marker styles.
4057
+ Defaults to ``None``, in which case it takes the value of
4058
+ :rc:`scatter.marker` = 'o'.
4059
+ See `~matplotlib.markers` for more information about marker styles.
4052
4060
4053
4061
cmap : `~matplotlib.colors.Colormap`, optional, default: None
4054
4062
A `.Colormap` instance or registered colormap name. *cmap* is only
0 commit comments