class matplotlib.container.BarContainer(patches, errorbar=None, **kwargs)
[source]
Bases: matplotlib.container.Container
Container for the artists of bar plots (e.g. created by Axes.bar
).
The container can be treated as a tuple of the patches themselves. Additionally, you can access these and further parameters by the attributes.
Attributes: |
|
---|
class matplotlib.container.Container(kl, label=None)
[source]
Bases: tuple
Base class for containers.
Containers are classes that collect semantically related Artists such as the bars of a bar plot.
add_callback(self, func)
[source]
Adds a callback function that will be called whenever one of the Artist
's properties changes.
Returns an id that is useful for removing the callback with remove_callback()
later.
get_children(self)
[source]
get_label(self)
[source]
Get the label used for this artist in the legend.
pchanged(self)
[source]
Fire an event when property changed, calling all of the registered callbacks.
remove(self)
[source]
remove_callback(self, oid)
[source]
Remove a callback based on its id.
See also
add_callback()
set_label(self, s)
[source]
Set the label to s for auto legend.
Parameters: |
|
---|
set_remove_method(self, f)
[source]
[Deprecated]
Deprecated since version 3.0:
class matplotlib.container.ErrorbarContainer(lines, has_xerr=False, has_yerr=False, **kwargs)
[source]
Bases: matplotlib.container.Container
Container for the artists of error bars (e.g. created by Axes.errorbar
).
The container can be treated as the lines tuple itself. Additionally, you can access these and further parameters by the attributes.
Attributes: |
|
---|
class matplotlib.container.StemContainer(markerline_stemlines_baseline, **kwargs)
[source]
Bases: matplotlib.container.Container
Container for the artists created in a Axes.stem()
plot.
The container can be treated like a namedtuple (markerline, stemlines,
baseline)
.
Attributes: |
|
---|
Parameters: |
|
---|
© 2012–2018 Matplotlib Development Team. All rights reserved.
Licensed under the Matplotlib License Agreement.
https://matplotlib.org/3.1.1/api/container_api.html