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

Method bottoms

lib/matplotlib/container.py:77–88  ·  view source on GitHub ↗

Return the values at the lower end of the bars. .. versionadded:: 3.11

(self)

Source from the content-addressed store, hash-verified

75
76 @property
77 def bottoms(self):
78 """
79 Return the values at the lower end of the bars.
80
81 .. versionadded:: 3.11
82 """
83 if self.orientation == 'vertical':
84 return [p.get_y() for p in self.patches]
85 elif self.orientation == 'horizontal':
86 return [p.get_x() for p in self.patches]
87 else:
88 raise ValueError("orientation must be 'vertical' or 'horizontal'.")
89
90 @property
91 def tops(self):

Callers

nothing calls this directly

Calls 2

get_yMethod · 0.45
get_xMethod · 0.45

Tested by

no test coverage detected