Changeset 10971
- Timestamp:
- 06/11/14 11:20:02 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.4/StatisticsView.cs
r10817 r10971 75 75 private void UpdateData() { 76 76 var logic = Content.StatisticsLogic; 77 txtRows.Text = logic.GetRowCount().ToString(); 77 var rowCount = logic.GetRowCount(); 78 txtRows.Text = rowCount.ToString(); 78 79 txtColumns.Text = logic.GetColumnCount().ToString(); 79 80 txtNumericColumns.Text = logic.GetNumericColumnCount().ToString(); … … 101 102 columns[9].HeaderCell.Value = "Num. diff. Values"; 102 103 103 for (int i = 0; i < logic.GetColumnCount(); ++i) { 104 columnsRowsMatrix.Add(GetList(i)); 104 if (rowCount > 0) { 105 for (int i = 0; i < logic.GetColumnCount(); ++i) { 106 columnsRowsMatrix.Add(GetList(i)); 107 } 105 108 } 106 109
Note: See TracChangeset
for help on using the changeset viewer.