Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/28/14 16:13:59 (9 years ago)
Author:
ascheibe
Message:

#2031

  • fixed column width of p-values
  • started working on drawing a normal distribution over the histogram
File:
1 edited

Legend:

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

    r11375 r11601  
    333333      }
    334334
    335       this.Invoke(new Action(() => { normalityStringConvertibleMatrixView.Content = pValsMatrix; }));
     335      this.Invoke(new Action(() => {
     336        normalityStringConvertibleMatrixView.Content = pValsMatrix;
     337        normalityStringConvertibleMatrixView.DataGridView.AutoResizeColumns(DataGridViewAutoSizeColumnsMode.AllCells);
     338      }));
    336339    }
    337340
     
    459462      }
    460463
    461       this.Invoke(new Action(() => { pairwiseStringConvertibleMatrixView.Content = pValsMatrix; }));
     464      this.Invoke(new Action(() => {
     465        pairwiseStringConvertibleMatrixView.Content = pValsMatrix;
     466        pairwiseStringConvertibleMatrixView.DataGridView.AutoResizeColumns(DataGridViewAutoSizeColumnsMode.AllCells);
     467      }));
    462468    }
    463469
Note: See TracChangeset for help on using the changeset viewer.