Free cookie consent management tool by TermsFeed Policy Generator

Changeset 11837


Ignore:
Timestamp:
01/28/15 20:19:04 (9 years ago)
Author:
ascheibe
Message:

#2031

  • fixed a problem where an exception was thrown when the same progress bar was removed multiple times
  • remove data points from histogram before adding new ones
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Analysis.Statistics.Views/3.3/StatisticalTestsView.cs

    r11715 r11837  
    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();
Note: See TracChangeset for help on using the changeset viewer.