Ignore:
Timestamp:
Jun 18, 2009, 2:47:06 PM (15 years ago)
Author:
rwilson
Message:

Back- (and forward)-merge, Numeric to numpy.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • misc/tools/plotcsv/plotcsv.py

    r7056 r7214  
    413413                     size=(BOX_PLOT_WIDTH, BOX_PLOT_HEIGHT))
    414414        Y_OFFSET += GEN_DELTAY
    415        
     415
    416416        wx.StaticText(p, -1, 'X-Column',
    417417                      pos=(COLLAB_X_OFFSET, Y_OFFSET+LAB_CTRL_OFFSET), style=wx.ALIGN_LEFT)
     
    490490        self.Bind(wx.EVT_BUTTON, self.PlotFiles, self.btnPlot)
    491491        self.Bind(wx.EVT_CHECKBOX, self.ChangeLegend, self.chkLegend)
    492 
    493492        self.Bind(wx.EVT_CHOICE, self.ChangeXLabel, self.cbXColHdr)
    494493        self.Bind(wx.EVT_CHOICE, self.ChangeYLabel, self.cbYColHdr)
     
    656655                index = self.common_headers.index(selected_x)
    657656                self.cbXColHdr.SetSelection(index)
    658 #                self.txtXLabel.SetValue(selected_x.title())
    659657            if selected_y in self.common_headers:
    660658                index = self.common_headers.index(selected_y)
    661659                self.cbYColHdr.SetSelection(index)
    662 #                self.txtYLabel.SetValue(selected_y.title())
    663660            self.txtXLabel.Enable()
    664661            self.txtYLabel.Enable()
Note: See TracChangeset for help on using the changeset viewer.