@@ -272,6 +272,47 @@ The use of mencoder for writing video files with mpl is problematic;
272
272
switching to ffmpeg is strongly advised. All support for mencoder
273
273
will be removed in version 2.2.
274
274
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
+
275
316
276
317
Previous Whats New
277
318
==================
0 commit comments