Changeset 11611 for branches/StatisticalTesting/HeuristicLab.Analysis.Statistics/3.3/StatisticalTestingView.cs
- Timestamp:
- 12/01/14 22:09:58 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/StatisticalTesting/HeuristicLab.Analysis.Statistics/3.3/StatisticalTestingView.cs
r11601 r11611 205 205 } 206 206 207 dataTableView.Content = histogramDataTable;207 GenerateChart(histogramDataTable); 208 208 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); 209 215 } 210 216 }
Note: See TracChangeset
for help on using the changeset viewer.