Changeset d5c5d3d in sasview for src/sas/qtgui/Plotting/Plotter.py
- Timestamp:
- Oct 17, 2017 3:25:17 PM (7 years ago)
- 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
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/Plotting/Plotter.py
rfef38e8 rd5c5d3d 58 58 self.title(title=value.name) 59 59 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): 61 61 """ 62 62 Add a new plot of self._data to the chart. … … 145 145 146 146 # 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) 150 151 151 152 # Current labels for axes
Note: See TracChangeset
for help on using the changeset viewer.