Changeset f7d39c9 in sasview for src/sas/qtgui/MainWindow
- Timestamp:
- Aug 22, 2018 7:00:00 AM (6 years ago)
- Branches:
- ESS_GUI, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc
- Children:
- b7f7d3f
- Parents:
- 0d8b2db
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/MainWindow/DataExplorer.py
rb51c8fc rf7d39c9 542 542 # 'sophisticated' test to generate standalone plot for residuals 543 543 if 'esiduals' in plot.title: 544 self.plotData([(item, plot)] )544 self.plotData([(item, plot)], transform=False) 545 545 else: 546 546 new_plots.append((item, plot)) … … 583 583 #============================================ 584 584 585 def plotData(self, plots ):585 def plotData(self, plots, transform=True): 586 586 """ 587 587 Takes 1D/2D data and generates a single plot (1D) or multiple plots (2D) … … 594 594 new_plot = Plotter(self) 595 595 new_plot.item = item 596 new_plot.plot(plot_set )596 new_plot.plot(plot_set, transform=transform) 597 597 # active_plots may contain multiple charts 598 598 self.active_plots[plot_set.id] = new_plot
Note: See TracChangeset
for help on using the changeset viewer.