MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / _GroupedBarReturn

Class _GroupedBarReturn

lib/matplotlib/axes/_axes.py:70–84  ·  view source on GitHub ↗

A provisional result object for `.Axes.grouped_bar`. This is a placeholder for a future better return type. We try to build in backward compatibility / migration possibilities. The only public interfaces are the ``bar_containers`` attribute and the ``remove()`` method.

Source from the content-addressed store, hash-verified

68
69
70class _GroupedBarReturn:
71 """
72 A provisional result object for `.Axes.grouped_bar`.
73
74 This is a placeholder for a future better return type. We try to build in
75 backward compatibility / migration possibilities.
76
77 The only public interfaces are the ``bar_containers`` attribute and the
78 ``remove()`` method.
79 """
80 def __init__(self, bar_containers):
81 self.bar_containers = bar_containers
82
83 def remove(self):
84 [b.remove() for b in self.bar_containers]
85
86
87@_docstring.interpd

Callers 1

grouped_barMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…