8000 DOC: move whats_new entries into main page · matplotlib/matplotlib@11f0fef · GitHub
[go: up one dir, main page]

Skip to content

Commit 11f0fef

Browse files
committed
DOC: move whats_new entries into main page
1 parent aac38aa commit 11f0fef

File tree

5 files changed

+41
-40
lines changed

5 files changed

+41
-40
lines changed

doc/users/whats_new.rst

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -272,6 +272,47 @@ The use of mencoder for writing video files with mpl is problematic;
272272
switching to ffmpeg is strongly advised. All support for mencoder
273273
will be removed in version 2.2.
274274

275+
Boxplot Zorder Keyword Argument
276+
-------------------------------
277+
278+
The ``zorder`` parameter now exists for :func:`boxplot`. This allows the zorder
279+
of a boxplot to be set in the plotting function call.
280+
281+
::
282+
283+
boxplot(np.arange(10), zorder=10)
284+
285+
Filled ``+`` and ``x`` markers
286+
------------------------------
287+
288+
New fillable *plus* and *x* markers have been added. See
289+
the :mod:`~matplotlib.markers` module and
290+
:ref:`marker reference <lines_bars_and_markers-marker_reference>`
291+
examples.
292+
293+
`rcount` and `ccount` for `plot_surface()`
294+
------------------------------------------
295+
296+
As of v2.0, mplot3d's :func:`~mpl_toolkits.mplot3d.axes3d.plot_surface` now
297+
accepts `rcount` and `ccount` arguments for controlling the sampling of the
298+
input data for plotting. These arguments specify the maximum number of
299+
evenly spaced samples to take from the input data. These arguments are
300+
also the new default sampling method for the function, and is
301+
considered a style change.
302+
303+
The old `rstride` and `cstride` arguments, which specified the size of the
304+
evenly spaced samples, become the default when 'classic' mode is invoked,
305+
and are still available for use. There are no plans for deprecating these
306+
arguments.
307+
308+
Streamplot Zorder Keyword Argument Changes
309+
------------------------------------------
310+
311+
The ``zorder`` parameter for :func:`streamplot` now has default
312+
value of ``None`` instead of ``2``. If ``None`` is given as ``zorder``,
313+
:func:`streamplot` has a default ``zorder`` of
314+
``matplotlib.lines.Line2D.zorder``.
315+
275316

276317
Previous Whats New
277318
==================

doc/users/whats_new/boxplot_zorder_kwarg.rst

Lines changed: 0 additions & 11 deletions
This file was deleted.

doc/users/whats_new/filled_plus_and_x_markers.rst

Lines changed: 0 additions & 7 deletions
This file was deleted.

doc/users/whats_new/plot_surface.rst

Lines changed: 0 additions & 15 deletions
This file was deleted.

doc/users/whats_new/streamplot_zorder.rst

Lines changed: 0 additions & 7 deletions
This file was deleted.

0 commit comments

Comments
 (0)
0