Esempio n. 1
0
 def _plot_monitor_init(self):
     """Initialize plot monitor
     """
     self.app = wx.App(False)
     self.frame = _MonitorPlot(self.data)
     self.frame.Show(True)
     self.app.Dispatch()
Esempio n. 2
0
 def __init__(self, data):
     '''
     Initialize plot monitor
     '''
     self.app = wx.App(False)
     self.frame = _MonitorPlot(data)
     self.frame.Show(True)
     self.app.Dispatch()