Definition at line 67 of file matplotlibwidget.py.
◆ __init__()
def shesha.util.matplotlibwidget.MatplotlibWidget.__init__ |
( |
|
self, |
|
|
|
parent = None |
|
) |
| |
Definition at line 69 of file matplotlibwidget.py.
69 def __init__(self, parent=None):
70 QtWidgets.QWidget.__init__(self, parent)
71 self.create_framentoolbar()
◆ create_framentoolbar()
def shesha.util.matplotlibwidget.MatplotlibWidget.create_framentoolbar |
( |
|
self | ) |
|
Definition at line 73 of file matplotlibwidget.py.
73 def create_framentoolbar(self):
74 self.frame = QtWidgets.QWidget()
75 self.canvas = MplCanvas()
76 self.canvas.setParent(self.frame)
77 self.mpltoolbar = Navigationtoolbar(self.canvas, self.frame)
78 self.vbl = QtWidgets.QVBoxLayout()
79 self.vbl.addWidget(self.canvas)
80 self.vbl.addWidget(self.mpltoolbar)
81 self.setLayout(self.vbl)
◆ canvas
shesha.util.matplotlibwidget.MatplotlibWidget.canvas |
◆ frame
shesha.util.matplotlibwidget.MatplotlibWidget.frame |
◆ mpltoolbar
shesha.util.matplotlibwidget.MatplotlibWidget.mpltoolbar |
◆ vbl
shesha.util.matplotlibwidget.MatplotlibWidget.vbl |
The documentation for this class was generated from the following file: