Initialize the window and display its contents.
(self)
| 30 | self.initializeUI() |
| 31 | |
| 32 | def initializeUI(self): |
| 33 | """Initialize the window and display its contents.""" |
| 34 | self.setMinimumSize(1000, 800) |
| 35 | self.setWindowTitle("3.2 - PyQt5 + Matplotlib") |
| 36 | |
| 37 | self.setupChart() |
| 38 | self.show() |
| 39 | |
| 40 | def setupChart(self): |
| 41 | """Set up the GUI's window and widgets that are embedded with Matplotlib figures.""" |