@@ -113,7 +113,8 @@ using Matplotlib, i.e. any use of `matplotlib.tri.Triangulation` that
113
113
requests that a Delaunay triangulation is calculated, which includes
114
114
`matplotlib.pyplot.tricontour `, `matplotlib.pyplot.tricontourf `,
115
115
`matplotlib.pyplot.tripcolor `, `matplotlib.pyplot.triplot `,
116
- `mlab.griddata ` and `mpl_toolkits.mplot3d.plot_trisurf `.
116
+ `matplotlib.mlab.griddata ` and
117
+ `mpl_toolkits.mplot3d.axes3d.Axes3D.plot_trisurf `.
117
118
118
119
119
120
@@ -234,8 +235,9 @@ still *left* and *bottom* respectively::
234
235
bar(left, height, *, align='center', **kwargs)
235
236
barh(bottom, width, *, align='center', **kwargs)
236
237
237
- despite behaving as the center in both cases. The methods now take ``*args, **kwargs ``
238
- is input and are documented to have the primary signatures of::
238
+ despite behaving as the center in both cases. The methods now take
239
+ ``*args, **kwargs `` as input and are documented to have the primary
240
+ signatures of::
239
241
240
242
bar(x, height, *, align='center', **kwargs)
241
243
barh(y, width, *, align='center', **kwargs)
@@ -276,14 +278,17 @@ Deprecations
276
278
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
277
279
278
280
The ``GraphicsContextBase.get_linestyle `` and
279
- ``GraphicsContextBase.set_linestyle `` methods, which effectively had
280
- no effect, have been deprecated.
281
+ ``GraphicsContextBase.set_linestyle `` methods, which had no effect,
282
+ have been deprecated. All of the backends Matplotlib ships use
283
+ ``GraphicsContextBase.get_dashes `` and
284
+ ``GraphicsContextBase.set_dashes `` which are more general.
285
+ Third-party backends should also migrate to the ``*_dashes `` methods.
281
286
282
287
283
288
``NavigationToolbar2.dynamic_update ``
284
289
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
285
290
286
- Use :meth: `matplotlib.backend_bases.FigureCanvas. draw_idle ` instead.
291
+ Use :meth: `draw_idle ` method on the `` Canvas `` instance instead.
287
292
288
293
289
294
Testing
@@ -302,10 +307,10 @@ Passing a string as *num* argument when calling an instance of
302
307
``mpl_toolkits.axes_grid `` module
303
308
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
304
309
305
- All functionallity from `mpl_toolkits.axes_grid ` can be found in
306
- either `mpl_toolkits.axes_grid1 ` or `mpl_toolkits.axisartist `. Axes
307
- classes from `mpl_toolkits.axes_grid ` based on `Axis ` from
308
- `mpl_toolkits.axisartist ` can be found in `mpl_toolkits.axisartist `
310
+ All functionally from `mpl_toolkits.axes_grid ` can be found in either
311
+ `mpl_toolkits.axes_grid1 ` or `mpl_toolkits.axisartist `. Axes classes
312
+ from `mpl_toolkits.axes_grid ` based on `Axis ` from
313
+ `mpl_toolkits.axisartist ` can be found in `mpl_toolkits.axisartist `.
309
314
310
315
311
316
``Axes `` collision in ``Figure.add_axes ``
0 commit comments