Changeset 7214 for misc/tools/plotcsv/plotcsv.py
- Timestamp:
- Jun 18, 2009, 2:47:06 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
misc/tools/plotcsv/plotcsv.py
r7056 r7214 413 413 size=(BOX_PLOT_WIDTH, BOX_PLOT_HEIGHT)) 414 414 Y_OFFSET += GEN_DELTAY 415 415 416 416 wx.StaticText(p, -1, 'X-Column', 417 417 pos=(COLLAB_X_OFFSET, Y_OFFSET+LAB_CTRL_OFFSET), style=wx.ALIGN_LEFT) … … 490 490 self.Bind(wx.EVT_BUTTON, self.PlotFiles, self.btnPlot) 491 491 self.Bind(wx.EVT_CHECKBOX, self.ChangeLegend, self.chkLegend) 492 493 492 self.Bind(wx.EVT_CHOICE, self.ChangeXLabel, self.cbXColHdr) 494 493 self.Bind(wx.EVT_CHOICE, self.ChangeYLabel, self.cbYColHdr) … … 656 655 index = self.common_headers.index(selected_x) 657 656 self.cbXColHdr.SetSelection(index) 658 # self.txtXLabel.SetValue(selected_x.title())659 657 if selected_y in self.common_headers: 660 658 index = self.common_headers.index(selected_y) 661 659 self.cbYColHdr.SetSelection(index) 662 # self.txtYLabel.SetValue(selected_y.title())663 660 self.txtXLabel.Enable() 664 661 self.txtYLabel.Enable()
Note: See TracChangeset
for help on using the changeset viewer.