- Timestamp:
- 12/01/14 22:09:58 (10 years ago)
- Location:
- branches/StatisticalTesting/HeuristicLab.Analysis.Statistics/3.3
- Files:
-
- 2 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/StatisticalTesting/HeuristicLab.Analysis.Statistics/3.3/HeuristicLab.Analysis.Statistics-3.3.csproj
r11601 r11611 120 120 <ItemGroup> 121 121 <Compile Include="BonferroniHolm.cs" /> 122 <Compile Include="DensityDataTableView.cs">123 <SubType>UserControl</SubType>124 </Compile>125 122 <Compile Include="EnumerableStatisticsExtension.cs" /> 126 123 <Compile Include="ExpFitting.cs" /> 127 124 <Compile Include="IFitting.cs" /> 128 <Compile Include="NormalDistribution.cs" />129 125 <Compile Include="LinearLeastSquaresFitting.cs" /> 130 126 <Compile Include="LogFitting.cs" /> -
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 } -
branches/StatisticalTesting/HeuristicLab.Analysis.Statistics/3.3/StatisticalTestingView.designer.cs
r11601 r11611 74 74 this.tabPage1 = new System.Windows.Forms.TabPage(); 75 75 this.tabPage2 = new System.Windows.Forms.TabPage(); 76 this.dataTableView = new DensityDataTableView();76 this.dataTableView = new HeuristicLab.Analysis.Views.HistogramControl(); 77 77 this.contextMenuStrip1.SuspendLayout(); 78 78 ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit(); … … 456 456 | System.Windows.Forms.AnchorStyles.Left) 457 457 | System.Windows.Forms.AnchorStyles.Right))); 458 this.dataTableView.Caption = "DataTable View";459 this.dataTableView.Content = null;460 458 this.dataTableView.Location = new System.Drawing.Point(6, 6); 461 459 this.dataTableView.Name = "dataTableView"; 462 this.dataTableView.ReadOnly = false;463 460 this.dataTableView.Size = new System.Drawing.Size(910, 529); 464 461 this.dataTableView.TabIndex = 0; … … 523 520 private System.Windows.Forms.TabPage tabPage1; 524 521 private System.Windows.Forms.TabPage tabPage2; 525 private DensityDataTableViewdataTableView;522 private HeuristicLab.Analysis.Views.HistogramControl dataTableView; 526 523 } 527 524 }
Note: See TracChangeset
for help on using the changeset viewer.