- Timestamp:
- Sep 3, 2018 5:32:31 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:
- f4a6f2c
- Parents:
- c1cfa80
- Location:
- src/sas/qtgui
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/MainWindow/DataExplorer.py
r9463ca2 rfacf4ca 544 544 # 'sophisticated' test to generate standalone plot for residuals 545 545 if 'esiduals' in plot.title: 546 self.plotData([(item, plot)], transform=False) 546 plot.yscale='linear' 547 self.plotData([(item, plot)]) 547 548 else: 548 549 new_plots.append((item, plot)) -
src/sas/qtgui/Plotting/PlotProperties.py
r53c771e rfacf4ca 24 24 self._color = color if color else 0 25 25 self._legend = legend 26 self._markersize = marker_size if marker_size else 526 self._markersize = marker_size if marker_size else 3 27 27 self.custom_color = False if isinstance(self._color, int) else True 28 28 -
src/sas/qtgui/Plotting/Plottables.py
rcee5c78 rfacf4ca 438 438 interactive = True 439 439 custom_color = None 440 markersize = 5 # default marker size is 'size 5'440 markersize = 3 # default marker size is 'size 3' 441 441 442 442 def __init__(self): … … 1046 1046 self.symbol = 0 1047 1047 self.custom_color = None 1048 self.markersize = 51048 self.markersize = 3 1049 1049 self.id = None 1050 1050 self.zorder = 1 -
src/sas/qtgui/Plotting/Plotter.py
r0231f93 rfacf4ca 6 6 import copy 7 7 import matplotlib as mpl 8 import numpy as np 8 9 from matplotlib.font_manager import FontProperties 9 10 from sas.qtgui.Plotting.PlotterData import Data1D … … 130 131 markersize = self._data.markersize 131 132 133 # Include scaling (log vs. linear) 134 ax.set_xscale(self.xscale, nonposy='clip') 135 ax.set_yscale(self.yscale, nonposy='clip') 136 137 # define the ranges 138 self.setRange = SetGraphRange(parent=self, 139 x_range=self.ax.get_xlim(), y_range=self.ax.get_ylim()) 140 132 141 # Draw non-standard markers 133 142 l_width = markersize * 0.4 … … 151 160 linestyle='', label=self._title, picker=True) 152 161 else: 162 dy = self._data.view.dy 163 # Convert tuple (lo,hi) to array [(x-lo),(hi-x)] 164 if dy is not None and type(dy) == type(()): 165 dy = np.vstack((y - dy[0], dy[1] - y)).transpose() 166 153 167 line = ax.errorbar(x, y, 154 yerr=self._data.view.dy, xerr=None, 168 yerr=dy, 169 xerr=None, 155 170 capsize=2, linestyle='', 156 171 barsabove=False, … … 161 176 xlolims=False, xuplims=False, 162 177 label=self._title, 178 zorder=1, 163 179 picker=True) 164 180 … … 183 199 ax.set_xlabel(self.x_label) 184 200 185 # Include scaling (log vs. linear)186 ax.set_xscale(self.xscale)187 ax.set_yscale(self.yscale)188 189 201 # define the ranges 190 self.setRange = SetGraphRange(parent=self,191 x_range=self.ax.get_xlim(), y_range=self.ax.get_ylim())202 #self.setRange = SetGraphRange(parent=self, 203 # x_range=self.ax.get_xlim(), y_range=self.ax.get_ylim()) 192 204 193 205 # refresh canvas
Note: See TracChangeset
for help on using the changeset viewer.