Return the values at the lower end of the bars. .. versionadded:: 3.11
(self)
| 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): |