13,009
回編集
136行目: | 136行目: | ||
import datetime | import datetime | ||
from PyQt5.QtCore import * | |||
from PyQt5.QtWidgets import * | from PyQt5.QtWidgets import * | ||
from matplotlib.backends.backend_qt5agg import FigureCanvasQTAgg as FigureCanvas | from matplotlib.backends.backend_qt5agg import FigureCanvasQTAgg as FigureCanvas | ||
147行目: | 147行目: | ||
class plotGraph(QMainWindow): | class plotGraph(QMainWindow): | ||
def __init__(self): | def __init__(self, parent=None): | ||
super().__init__() | super(MainWindow, self).__init__(parent) | ||
self.title = "グラフを表示するウインドウ" | self.title = "グラフを表示するウインドウ" | ||
self.width = 700 | self.width = 700 |