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