Changeset 11715
- Timestamp:
- 12/22/14 09:49:04 (10 years ago)
- Location:
- trunk/sources
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Analysis.Statistics.Views/3.3/StatisticalTestsView.cs
r11705 r11715 473 473 RunCollectionBoxPlotView boxplotView = new RunCollectionBoxPlotView(); 474 474 boxplotView.Content = Content; 475 // TODO: enable as soon as we move to HeuristicLab.Optimization.Views476 // boxplotView.xAxisComboBox.SelectedItem = xAxisComboBox.SelectedItem;477 // boxplotView.yAxisComboBox.SelectedItem = yAxisComboBox.SelectedItem; 475 boxplotView.SetXAxis(groupComboBox.SelectedItem.ToString()); 476 boxplotView.SetYAxis(resultComboBox.SelectedItem.ToString()); 477 478 478 boxplotView.Show(); 479 479 } -
trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionViews/RunCollectionBoxPlotView.cs
r11344 r11715 453 453 } 454 454 455 public void SetXAxis(string axisName) { 456 xAxisComboBox.SelectedItem = axisName; 457 } 458 459 public void SetYAxis(string axisName) { 460 yAxisComboBox.SelectedItem = axisName; 461 } 455 462 } 456 463 }
Note: See TracChangeset
for help on using the changeset viewer.