Changeset 5a525e1 in sasview for src/sas/sasgui/perspectives/corfunc
- Timestamp:
- Aug 23, 2016 9:06:04 AM (8 years ago)
- Branches:
- master, 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, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- 96d293da
- Parents:
- acefa2b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/sasgui/perspectives/corfunc/corfunc.py
r204f628 r5a525e1 165 165 new_plot.yaxis("\\rm{Intensity} ", "cm^{-1}") 166 166 new_plot.y -= self.corfunc_panel.background 167 # Show data on a log(Q)/I scale 168 new_plot.ytransform = 'y' 167 169 group_id = GROUP_ID_IQ_DATA 168 170 if label == IQ_EXTRAPOLATED_DATA_LABEL: … … 172 174 new_plot.xaxis("{x}", 'A') 173 175 new_plot.yaxis("{\\Gamma}", '') 176 # Show transform on a linear scale 177 new_plot.xtransform = 'x' 178 new_plot.ytransform = 'y' 174 179 group_id = GROUP_ID_TRANSFORM 175 180 # Show the transformation as a curve instead of points … … 180 185 new_plot.interactive = True 181 186 new_plot.title = group_id.replace('$', '').replace('\\', '') 182 # Show data on a linear scale183 new_plot.xtransform = 'x'184 new_plot.ytransform = 'y'185 187 wx.PostEvent(self.parent, 186 188 NewPlotEvent(plot=new_plot, title=new_plot.title,
Note: See TracChangeset
for help on using the changeset viewer.