pyqt5绘制的matplotlibcanvas中如何采集鼠标最后一次点击的坐标轴对象?

How to collect the axis object of the last mouse click in matplotlib canvas drawn with pyqt5?

我有一个交互式 window,我需要知道在交互过程中选择了哪个子图。当我单独使用matplotlib时,我可以使用plt.connect('button_press_event', myMethod)。但是对于 pyqt5,我正在导入 FigureCanvasQTAgg 并且有一个对图形本身的引用,但不是 pyplot 的等价物。所以,我无法创建该引用。

最小可重现示例:

from PyQt5.QtWidgets import QApplication, QWidget, QVBoxLayout
from matplotlib.backends.backend_qt5agg import FigureCanvasQTAgg as FigureCanvas, NavigationToolbar2QT as NavigationToolbar
import matplotlib.pyplot as plt
from matplotlib.widgets import SpanSelector
import numpy as np

# list to store the axis last used with a mouseclick
currAx = []


# detect the currently modified axis
def onClick(event):
    if event.inaxes:
        currAx[:] = [event.inaxes]


class MyWidget(QWidget):
    def __init__(self):
        super().__init__()

        self.canvas = FigureCanvas(plt.Figure())
        self.axis = self.canvas.figure.subplots(3)
        for i, ax in enumerate(self.axis):
            t = np.linspace(-i, i + 1, 100)
            ax.plot(t, np.sin(2 * np.pi * t))
        self.listOfSpans = [SpanSelector(
            ax,
            self.onselect,
            "horizontal"
        )
            for ax in self.axis]
        plt.connect('button_press_event', onClick)
        # need an equivalent of ^^ to find the axis interacted with
        self.init_ui()

    def init_ui(self):
        layout = QVBoxLayout()
        toolbar = NavigationToolbar(self.canvas, self)
        layout.addWidget(toolbar)
        layout.addWidget(self.canvas)
        self.setLayout(layout)
        self.show()

    def onselect(self, xmin, xmax):
        if xmin == xmax:
            return
        # identify the axis interacted and do something with that information
        for ax, span in zip(self.axis, self.listOfSpans):
            if ax == currAx[0]:
                print(ax)
        print(xmin, xmax)
        self.canvas.draw()


def run():
    app = QApplication([])
    mw = MyWidget()
    app.exec_()


if __name__ == '__main__':
    run()

显然,还有一种方法可以连接 canvas - canvas.mpl_connect('button_press_event', onclick)

Link对解释:https://matplotlib.org/stable/users/explain/event_handling.html

在这个link中找到link的解释: