Changeset 9bfa73f in sasview
- Timestamp:
- Oct 13, 2011 5:10:52 PM (13 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, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- 7124300
- Parents:
- 7b48b08
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sansguiframe/src/sans/guiframe/data_processor.py
r7b48b08 r9bfa73f 908 908 wx.EVT_BUTTON(self, self.plot_button.GetId(), self.on_plot) 909 909 self.plotting_sizer.AddMany([ 910 (wx.StaticText(self, -1, "x-axis label"), 1, 910 (wx.StaticText(self, -1, 911 "X-axis Label\nSelection Range"), 1, 911 912 wx.TOP|wx.BOTTOM|wx.LEFT, 10), 912 913 (self.x_axis_label, 1, wx.TOP|wx.BOTTOM, 10), 913 914 (self.x_axis_add, 1, wx.TOP|wx.BOTTOM|wx.RIGHT, 10), 914 (wx.StaticText(self, -1, " x-axis title"), 1,915 (wx.StaticText(self, -1, "X-axis Label"), 1, 915 916 wx.TOP|wx.BOTTOM|wx.LEFT, 10), 916 917 (self.x_axis_title, 1, wx.TOP|wx.BOTTOM, 10), 917 (wx.StaticText(self, -1 , " unit"), 1,918 (wx.StaticText(self, -1 , "Y-axis Unit"), 1, 918 919 wx.TOP|wx.BOTTOM, 10), 919 920 (self.x_axis_unit, 1, wx.TOP|wx.BOTTOM, 10), 920 (wx.StaticText(self, -1, "y-axis label"), 1, 921 (wx.StaticText(self, -1, 922 "Y-axis Label\nSelection Range"), 1, 921 923 wx.BOTTOM|wx.LEFT, 10), 922 924 (self.y_axis_label, wx.BOTTOM, 10), 923 925 (self.y_axis_add, 1, wx.BOTTOM|wx.RIGHT, 10), 924 (wx.StaticText(self, -1, " y-axis title"), 1,926 (wx.StaticText(self, -1, "Y-axis Label"), 1, 925 927 wx.BOTTOM|wx.LEFT, 10), 926 928 (self.y_axis_title, wx.BOTTOM, 10), 927 (wx.StaticText(self, -1 , " unit"), 1, wx.BOTTOM, 10),929 (wx.StaticText(self, -1 , "Y-axis Unit"), 1, wx.BOTTOM, 10), 928 930 (self.y_axis_unit, 1, wx.BOTTOM, 10), 929 931 (-1, -1),
Note: See TracChangeset
for help on using the changeset viewer.