(self, legend, xdescent, ydescent, width, height, fontsize)
| 652 | self._bottom = bottom |
| 653 | |
| 654 | def get_ydata(self, legend, xdescent, ydescent, width, height, fontsize): |
| 655 | if self._yoffsets is None: |
| 656 | ydata = height * (0.5 * legend._scatteryoffsets + 0.5) |
| 657 | else: |
| 658 | ydata = height * np.asarray(self._yoffsets) |
| 659 | |
| 660 | return ydata |
| 661 | |
| 662 | def create_artists(self, legend, orig_handle, |
| 663 | xdescent, ydescent, width, height, fontsize, |
no outgoing calls
no test coverage detected