Changeset 6b3a231 in sasview for src/sas/qtgui


Ignore:
Timestamp:
Aug 13, 2018 2:58:54 AM (6 years ago)
Author:
Torin Cooper-Bennun <torin.cooper-bennun@…>
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:
b4d05bd
Parents:
44777ee
Message:

plot intermediate results with lines

Location:
src/sas/qtgui/Perspectives/Fitting
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/sas/qtgui/Perspectives/Fitting/FittingLogic.py

    r44777ee r6b3a231  
    229229            pq_plot = self._create1DPlot(tab_id, x, pq_values, model, data, component="P(Q)") 
    230230            sq_plot = self._create1DPlot(tab_id, x, sq_values, model, data, component="S(Q)") 
    231  
    232231            return pq_plot, sq_plot 
    233232        else: 
  • src/sas/qtgui/Perspectives/Fitting/FittingWidget.py

    r3ae9179 r6b3a231  
    22342234        pq_data, sq_data = self.logic.new1DProductPlots(return_data, self.tab_id) 
    22352235        if pq_data is not None and sq_data is not None: 
     2236            pq_data.symbol = "Line" 
     2237            sq_data.symbol = "Line" 
    22362238            self.createNewIndex(pq_data) 
    22372239            self.createNewIndex(sq_data) 
Note: See TracChangeset for help on using the changeset viewer.