PyQt4,matplotlib,修改现有绘图的轴标签

时间:2013-10-16 02:42:20

标签: python matplotlib pyqt4

我正在PyQt4和matplotlib中创建绘图。以下过度简化的演示程序显示我想要更改轴上的标签以响应某些事件。为了在这里演示,我做了一个“指针进入”事件。该程序的行为是我根本没有对绘图的外观进行任何改变。

import sys
from PyQt4.QtGui import *
from PyQt4.QtCore import *
from matplotlib.backends.backend_qt4agg import FigureCanvasQTAgg as FigureCanvas
import matplotlib.pyplot as plt
import random


class Window(QWidget):
    def __init__(self, parent=None):
        super().__init__(parent)
        self.setMinimumSize(400,400)
        # set up a plot but don't label the axes
        self.figure = plt.figure()
        self.canvas = FigureCanvas(self.figure)
        self.axes = self.figure.add_subplot(111)
        h = QHBoxLayout(self)
        h.addWidget(self.canvas)

    def enterEvent(self, evt):
        # defer labeling the axes until an 'enterEvent'. then set
        # the x label
        r = int(10 * random.random())
        self.axes.set_xlabel(str(r))


if __name__ == "__main__":
    app = QApplication(sys.argv)
    w = Window()
    w.show()
    app.exec_()

1 个答案:

答案 0 :(得分:2)

你快到了。完成调用set_xlabel()之类的函数后,您只需要指示matplotlib重绘绘图。

按如下方式修改您的程序:

def enterEvent(self, evt):
    # defer labeling the axes until an 'enterEvent'. then set
    # the x label
    r = int(10 * random.random())
    self.axes.set_xlabel(str(r))
    self.canvas.draw()

每次将鼠标移动到窗口时,您都会看到标签更改!