You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/users/whats_new.rst
+16-13
Original file line number
Diff line number
Diff line change
@@ -82,7 +82,7 @@ parameter to ``jshtml``. One can also call the
82
82
animation. This can be displayed using IPython's ``HTML`` display class::
83
83
84
84
from IPython.display import HTML
85
-
HTML(animation.anim_to_jshtml(anim))
85
+
HTML(animation.to_jshtml())
86
86
87
87
The `~matplotlib.animation.HTMLWriter` class can also be used to generate
88
88
an HTML file by asking for the ``html`` writer.
@@ -147,7 +147,10 @@ rather than no arrow (the new behavior actually matches the documentation).
147
147
148
148
Orthographic projection for mplot3d
149
149
-----------------------------------
150
-
:class:`~mpl_toolkits.mplot3d.axes3d.Axes3D` now accepts ``proj_type`` kwarg and has a method :meth:`~mpl_toolkits.mplot3d.axes3d.Axes3D.set_proj_type`. The default option is ``'persp'`` as before, and supplying ``'ortho'`` enables orthographic view.
150
+
:class:`~mpl_toolkits.mplot3d.axes3d.Axes3D` now accepts ``proj_type`` keyword
151
+
argument and has a method :meth:`~mpl_toolkits.mplot3d.axes3d.Axes3D.set_proj_type`.
152
+
The default option is ``'persp'`` as before, and supplying ``'ortho'`` enables
153
+
orthographic view.
151
154
152
155
153
156
``voxels`` function for mplot3d
@@ -171,9 +174,9 @@ applied.
171
174
Hexbin default line color
172
175
-------------------------
173
176
174
-
The default ``linecolor`` kwarg for :func:`~matplotlib.axes.Axes.hexbin` is now
175
-
``'face'``, and supplying ``'none'`` now prevents lines from being drawn around
176
-
the hexagons.
177
+
The default ``linecolor`` keyword argument for :func:`~matplotlib.axes.Axes.hexbin`
178
+
is now ``'face'``, and supplying ``'none'`` now prevents lines from being drawn
179
+
around the hexagons.
177
180
178
181
179
182
Figure.legend() can be called without arguments
@@ -231,8 +234,8 @@ in a ``ValueError``. The previous behavior resulted in the limits being
231
234
erroneously reset to ``(-0.001, 0.001)``.
232
235
233
236
234
-
Metadata savefig kwarg
235
-
----------------------
237
+
Metadata savefig keyword argument
238
+
---------------------------------
236
239
237
240
:func:`~matplotlib.pyplot.savefig` now accepts ``metadata`` as a keyword
238
241
argument. It can be used to store key/value pairs in the image metadata.
@@ -311,11 +314,11 @@ customizable percent symbol and either automatic or manual control over the
311
314
decimal points.
312
315
313
316
314
-
New quiverkey angle kwarg
315
-
-------------------------
317
+
New quiverkey angle keyword argument
318
+
------------------------------------
316
319
317
320
Plotting a :func:`~matplotlib.axes.Axes.quiverkey` now admits the ``angle``
318
-
kwarg, which sets the angle at which to draw the key arrow.
321
+
keyword argument, which sets the angle at which to draw the key arrow.
0 commit comments