- Timestamp:
- 11/05/10 12:53:47 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Data.Views/3.3/StringConvertibleMatrixView.cs
r4717 r4720 73 73 InitializeComponent(); 74 74 ShowRowsAndColumnsTextBox = true; 75 ShowStatisticalInformation = false;75 ShowStatisticalInformation = true; 76 76 errorProvider.SetIconAlignment(rowsTextBox, ErrorIconAlignment.MiddleLeft); 77 77 errorProvider.SetIconPadding(rowsTextBox, 2); … … 536 536 if (selectedValues.Count > 1) { 537 537 StringBuilder labelText = new StringBuilder(); 538 labelText.Append("Count: " + selectedValues.Count + " "); 539 labelText.Append("Sum: " + selectedValues.Sum() + " "); 540 labelText.Append("Min: " + selectedValues.Min() + " "); 541 labelText.Append("Max: " + selectedValues.Max() + " "); 538 542 labelText.Append("Average: " + selectedValues.Average() + " "); 539 labelText.Append("StdDev: " + selectedValues.StandardDeviation() + " "); 540 labelText.Append("Sum: " + selectedValues.Sum() + " "); 541 labelText.Append("Count: " + selectedValues.Count + " "); 543 labelText.Append("Standard Deviation: " + selectedValues.StandardDeviation() + " "); 544 542 545 toolStripStatusLabel.Text = labelText.ToString(); 543 546 }
Note: See TracChangeset
for help on using the changeset viewer.