Changeset d5c5d3d in sasview for src/sas/qtgui/Plotting/Plotter.py


Ignore:
Timestamp:
Oct 17, 2017 3:25:17 PM (7 years ago)
Author:
celinedurniak <celine.durniak@…>
Branches:
ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc
Children:
f0bb711
Parents:
d6e5b31
Message:

Implemented new GUI for data operation panel

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/qtgui/Plotting/Plotter.py

    rfef38e8 rd5c5d3d  
    5858        self.title(title=value.name) 
    5959 
    60     def plot(self, data=None, color=None, marker=None, hide_error=False): 
     60    def plot(self, data=None, color=None, marker=None, hide_error=False, show_legend=True): 
    6161        """ 
    6262        Add a new plot of self._data to the chart. 
     
    145145 
    146146        # Now add the legend with some customizations. 
    147         self.legend = ax.legend(loc='upper right', shadow=True) 
    148         if self.legend: 
    149             self.legend.set_picker(True) 
     147        if show_legend: 
     148            self.legend = ax.legend(loc='upper right', shadow=True) 
     149            if self.legend: 
     150                self.legend.set_picker(True) 
    150151 
    151152        # Current labels for axes 
Note: See TracChangeset for help on using the changeset viewer.