Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/05/15 17:29:35 (10 years ago)
Author:
ascheibe
Message:

#2031 merged revisions 11703,11704,11705,11706,11715,11717,11725,11757,11837,11914 into stable

Location:
stable
Files:
3 edited
1 copied

Legend:

Unmodified
Added
Removed
  • stable

  • stable/HeuristicLab.Analysis.Statistics.Views/3.3

    • Property svn:global-ignores set to
      obj
    • Property svn:ignore set to
      Plugin.cs
  • stable/HeuristicLab.Analysis.Statistics.Views/3.3/StatisticalTestsView.cs

    r11705 r11919  
    7878        UpdateResultComboBox();
    7979        UpdateGroupsComboBox();
    80         FillCompComboBox();
    8180        RebuildDataTable();
    8281      }
     
    230229
    231230    private void GenerateChart(DataTable histogramTable) {
     231      histogramControl.ClearPoints();
    232232      foreach (var row in histogramTable.Rows) {
    233233        histogramControl.AddPoints(row.Name, row.Values, true);
     
    266266
    267267    private void groupComboBox_SelectedValueChanged(object sender, EventArgs e) {
     268      RebuildDataTable();
    268269      FillCompComboBox();
    269       RebuildDataTable();
    270270      ResetUI();
    271271      CalculateValues();
     
    473473      RunCollectionBoxPlotView boxplotView = new RunCollectionBoxPlotView();
    474474      boxplotView.Content = Content;
    475       // TODO: enable as soon as we move to HeuristicLab.Optimization.Views
    476       // boxplotView.xAxisComboBox.SelectedItem = xAxisComboBox.SelectedItem;
    477       // boxplotView.yAxisComboBox.SelectedItem = yAxisComboBox.SelectedItem;
     475      boxplotView.SetXAxis(groupComboBox.SelectedItem.ToString());
     476      boxplotView.SetYAxis(resultComboBox.SelectedItem.ToString());
     477
    478478      boxplotView.Show();
    479479    }
Note: See TracChangeset for help on using the changeset viewer.