Changeset ef6d1d8 in sasview
- Timestamp:
- Sep 15, 2016 8:33:57 AM (8 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:
- d9afe942
- Parents:
- aa6028c
- git-author:
- Lewis O'Driscoll <lewis.o'driscoll@…> (08/10/16 11:39:28)
- git-committer:
- Piotr Rozyczko <rozyczko@…> (09/15/16 08:33:57)
- Location:
- src/sas/sasgui/plottools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/sasgui/plottools/PlotPanel.py
raa6028c ref6d1d8 731 731 self.xLabel = "x^(4)" 732 732 self.yLabel = "y*x^(4)" 733 self.viewModel = "--" 734 dial.setValues(self.xLabel, self.yLabel, self.viewModel) 735 if self.viewModel == "Kratky y*x^(2) vs x": 736 self.xLabel = "x" 737 self.yLabel = "y*x^(2)" 733 738 self.viewModel = "--" 734 739 dial.setValues(self.xLabel, self.yLabel, self.viewModel) … … 1821 1826 yunits = convert_unit(-1, yunits) 1822 1827 self.graph._yaxis_transformed("1/%s" % yname, "%s" % yunits) 1828 if self.yLabel == "y*x^(2)": 1829 set_ylim = True 1830 item.transformY(transform.toYX2, transform.errToYX2) 1831 xunits = convert_unit(4, self.xaxis_unit) 1832 self.graph._yaxis_transformed("%s \ \ %s^{2}" % (yname, xname), 1833 "%s%s" % (yunits, xunits)) 1823 1834 if self.yLabel == "y*x^(4)": 1824 1835 set_ylim = True -
src/sas/sasgui/plottools/PropertyDialog.py
re3ae090 ref6d1d8 64 64 self.yvalue.Insert("ln(y)", 2) 65 65 self.yvalue.Insert("y^(2)", 3) 66 self.yvalue.Insert("y*x^(4)", 4) 67 self.yvalue.Insert("1/sqrt(y)", 5) 68 self.yvalue.Insert("log10(y)", 6) 69 self.yvalue.Insert("ln(y*x)", 7) 70 self.yvalue.Insert("ln(y*x^(2))", 8) 71 self.yvalue.Insert("ln(y*x^(4))", 9) 72 self.yvalue.Insert("log10(y*x^(4))", 10) 66 self.yvalue.Insert("y*x^(2)", 4) 67 self.yvalue.Insert("y*x^(4)", 5) 68 self.yvalue.Insert("1/sqrt(y)", 6) 69 self.yvalue.Insert("log10(y)", 7) 70 self.yvalue.Insert("ln(y*x)", 8) 71 self.yvalue.Insert("ln(y*x^(2))", 9) 72 self.yvalue.Insert("ln(y*x^(4))", 10) 73 self.yvalue.Insert("log10(y*x^(4))", 11) 73 74 # type of view or model used 74 75 self.view.SetValue("--") … … 78 79 self.view.Insert("XS Guinier ln(y*x) vs x^(2)", 3) 79 80 self.view.Insert("Porod y*x^(4) vs x^(4)", 4) 80 # This did not work in 3.1.2 and does not work now. 81 # prefer to fix (should not be too hard) but for the moment 82 # am removing as an option the user sees so they don't get 83 # disappointed. PDB 7/10/2016 84 # self.view.Insert("Kratky y*x^(2) vs x", 5) 81 self.view.Insert("Kratky y*x^(2) vs x", 5) 85 82 self.SetSizer(vbox) 86 83 self.Fit()
Note: See TracChangeset
for help on using the changeset viewer.