Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions lib/matplotlib/axes/_axes.py
Original file line number Diff line number Diff line change
Expand Up @@ -2648,6 +2648,9 @@ def bar_label(self, container, labels=None, *, fmt="%g", label_type="edge",
When *fmt* is a string and can be interpreted in both formats,
%-style takes precedence over {}-style.

.. versionadded:: 3.7
Support for {}-style format string and callables.

label_type : {'edge', 'center'}, default: 'edge'
The label type. Possible values:

Expand Down Expand Up @@ -3329,6 +3332,10 @@ def errorbar(self, x, y, yerr=None, xerr=None,
sizes. By default, this draws the data markers/lines as well the
errorbars. Use fmt='none' to draw errorbars without any data markers.

.. versionadded:: 3.7
Caps and error lines are drawn in polar coordinates on polar plots.


Parameters
----------
x, y : float or array-like
Expand Down
3 changes: 3 additions & 0 deletions lib/mpl_toolkits/axes_grid1/parasite_axes.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,9 @@ def get_aux_axes(
Despite this method's name, this should actually be thought of as an
``add_parasite_axes`` method.

.. versionchanged:: 3.7
Defaults to same base axes class as host axes.

Parameters
----------
tr : `~matplotlib.transforms.Transform` or None, default: None
Expand Down