Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/01/14 22:09:58 (9 years ago)
Author:
ascheibe
Message:

#2031 adapted statistical testing view to new histogram

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/StatisticalTesting/HeuristicLab.Analysis.Statistics/3.3/StatisticalTestingView.cs

    r11601 r11611  
    205205        }
    206206
    207         dataTableView.Content = histogramDataTable;
     207        GenerateChart(histogramDataTable);
    208208        stringConvertibleMatrixView.Content = dt;
     209      }
     210    }
     211
     212    private void GenerateChart(DataTable histogramTable) {
     213      foreach (var row in histogramTable.Rows) {
     214        dataTableView.AddPoints(row.Name, row.Values, true);
    209215      }
    210216    }
Note: See TracChangeset for help on using the changeset viewer.