Changeset 0ffdf6e in sasview


Ignore:
Timestamp:
Mar 25, 2019 7:01:07 AM (5 years ago)
Author:
awashington
Branches:
ESS_GUI, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_opencl
Children:
4b796b8
Parents:
f6c3f01
git-author:
Adam Washington <rprospero@…> (03/25/19 06:39:23)
git-committer:
Adam Washington <rprospero@…> (03/25/19 07:01:07)
Message:

Add axes labels to Corfunc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/qtgui/Perspectives/Corfunc/CorfuncPerspective.py

    ra7a0def r0ffdf6e  
    5050        self.axes.set_xscale("log") 
    5151        self.axes.set_yscale("log") 
     52        self.axes.set_xlabel("Q [$\AA^{-1}$]") 
     53        self.axes.set_ylabel("I(Q) [cm$^{-1}$]") 
     54        self.fig.tight_layout() 
    5255 
    5356        qmin = float(self.model.item(W.W_QMIN).text()) 
     
    8184        self.axes.set_xscale("linear") 
    8285        self.axes.set_yscale("linear") 
     86        self.axes.set_xlabel("Z [$\AA$]") 
     87        self.axes.set_ylabel("Correlation") 
     88        self.fig.tight_layout() 
    8389 
    8490        if self.data: 
Note: See TracChangeset for help on using the changeset viewer.