Free cookie consent management tool by TermsFeed Policy Generator

source: branches/RegressionBenchmarks/HeuristicLab.Problems.DataAnalysis.Views/3.4/Regression/RegressionSolutionResidualHistogram.Designer.cs @ 7186

Last change on this file since 7186 was 7186, checked in by sforsten, 12 years ago

#1708:
-added first version of the RegressionSolutionResidualHistogram
the residuals are already displayed, but with absolute frequency and only for all samples (not for training and test partition)
furthermore the number of columns is fixed and the GUI has to be adjusted

File size: 2.4 KB
Line 
1namespace HeuristicLab.Problems.DataAnalysis.Views.Regression {
2  partial class RegressionSolutionResidualHistogram {
3    /// <summary>
4    /// Required designer variable.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Clean up any resources being used.
10    /// </summary>
11    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12    protected override void Dispose(bool disposing) {
13      if (disposing && (components != null)) {
14        components.Dispose();
15      }
16      base.Dispose(disposing);
17    }
18
19    #region Component Designer generated code
20
21    /// <summary>
22    /// Required method for Designer support - do not modify
23    /// the contents of this method with the code editor.
24    /// </summary>
25    private void InitializeComponent() {
26      System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
27      System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
28      this.chart = new HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart();
29      ((System.ComponentModel.ISupportInitialize)(this.chart)).BeginInit();
30      this.SuspendLayout();
31      //
32      // chart
33      //
34      chartArea1.Name = "ChartArea";
35      this.chart.ChartAreas.Add(chartArea1);
36      this.chart.Dock = System.Windows.Forms.DockStyle.Fill;
37      legend1.Alignment = System.Drawing.StringAlignment.Center;
38      legend1.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Top;
39      legend1.Name = "Default";
40      this.chart.Legends.Add(legend1);
41      this.chart.Location = new System.Drawing.Point(0, 0);
42      this.chart.Name = "chart";
43      this.chart.Size = new System.Drawing.Size(150, 150);
44      this.chart.TabIndex = 2;
45      //
46      // RegressionSolutionResidualHistogram
47      //
48      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
49      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
50      this.Controls.Add(this.chart);
51      this.Name = "RegressionSolutionResidualHistogram";
52      ((System.ComponentModel.ISupportInitialize)(this.chart)).EndInit();
53      this.ResumeLayout(false);
54
55    }
56
57    #endregion
58
59    private Visualization.ChartControlsExtensions.EnhancedChart chart;
60  }
61}
Note: See TracBrowser for help on using the repository browser.