Changeset d9150d8 in sasview for src/sas/qtgui/Plotting
- Timestamp:
- Jul 10, 2018 6:03:11 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:
- 4dd5766
- Parents:
- 515c23df
- git-author:
- Piotr Rozyczko <rozyczko@…> (07/10/18 05:57:36)
- git-committer:
- Piotr Rozyczko <rozyczko@…> (07/10/18 06:03:11)
- Location:
- src/sas/qtgui/Plotting
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/Plotting/Masks/SectorMask.py
r05fa132 rd9150d8 4 4 import numpy as np 5 5 6 from qtgui.Plotting.Slicers.BaseInteractor import BaseInteractor7 from qtgui.Plotting.Slicers.SectorSlicer import SideInteractor8 from qtgui.Plotting.Slicers.SectorSlicer import LineInteractor6 from sas.qtgui.Plotting.Slicers.BaseInteractor import BaseInteractor 7 from sas.qtgui.Plotting.Slicers.SectorSlicer import SideInteractor 8 from sas.qtgui.Plotting.Slicers.SectorSlicer import LineInteractor 9 9 10 10 class SectorMask(BaseInteractor): -
src/sas/qtgui/Plotting/Plotter2D.py
re20870bc rd9150d8 85 85 self.yLabel = "%s(%s)"%(data._yaxis, data._yunit) 86 86 self.title(title=data.title) 87 88 @property89 def item(self):90 ''' getter for this plot's QStandardItem '''91 return self._item92 93 @item.setter94 def item(self, item=None):95 ''' setter for this plot's QStandardItem '''96 self._item = item97 87 98 88 def plot(self, data=None, marker=None, show_colorbar=True): -
src/sas/qtgui/Plotting/PlotterBase.py
re30646ab rd9150d8 133 133 134 134 @property 135 def item(self): 136 ''' getter for this plot's QStandardItem ''' 137 return self._item 138 139 @item.setter 140 def item(self, item=None): 141 ''' setter for this plot's QStandardItem ''' 142 self._item = item 143 144 @property 135 145 def xLabel(self, xlabel=""): 136 146 """ x-label setter """
Note: See TracChangeset
for help on using the changeset viewer.