- Timestamp:
- 01/28/15 20:19:04 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Analysis.Statistics.Views/3.3/StatisticalTestsView.cs
r11715 r11837 78 78 UpdateResultComboBox(); 79 79 UpdateGroupsComboBox(); 80 FillCompComboBox();81 80 RebuildDataTable(); 82 81 } … … 230 229 231 230 private void GenerateChart(DataTable histogramTable) { 231 histogramControl.ClearPoints(); 232 232 foreach (var row in histogramTable.Rows) { 233 233 histogramControl.AddPoints(row.Name, row.Values, true); … … 266 266 267 267 private void groupComboBox_SelectedValueChanged(object sender, EventArgs e) { 268 RebuildDataTable(); 268 269 FillCompComboBox(); 269 RebuildDataTable();270 270 ResetUI(); 271 271 CalculateValues();
Note: See TracChangeset
for help on using the changeset viewer.