def event_file_selected(self,file_name):
     new_data = TimingData()
     new_data.load_from_csv(file_name)
     new_plot = Plot(new_data)
     self.data_source_model.add_data(new_plot)
     self.data_source_table.resizeColumnsToContents()
Example #2
0
 def event_file_selected(self, file_name):
     new_data = TimingData()
     new_data.load_from_csv(file_name)
     new_plot = Plot(new_data)
     self.data_source_model.add_data(new_plot)
     self.data_source_table.resizeColumnsToContents()