Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ChangeDatasetOfRegressionModel/HeuristicLab.Problems.DataAnalysis.Views/3.4/Regression/RegressionSolutionResidualHistogram.Designer.cs @ 8513

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

#1758: merged r8023:8509 from trunk to branch to make it useable again

File size: 2.8 KB
Line 
1namespace HeuristicLab.Problems.DataAnalysis.Views {
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(289, 220);
44      this.chart.TabIndex = 0;
45      this.chart.CustomizeLegend += new System.EventHandler<System.Windows.Forms.DataVisualization.Charting.CustomizeLegendEventArgs>(this.chart_CustomizeLegend);
46      this.chart.MouseDown += new System.Windows.Forms.MouseEventHandler(this.chart_MouseDown);
47      this.chart.MouseMove += new System.Windows.Forms.MouseEventHandler(this.chart_MouseMove);
48      //
49      // RegressionSolutionResidualHistogram
50      //
51      this.AllowDrop = true;
52      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
53      this.Controls.Add(this.chart);
54      this.Name = "RegressionSolutionResidualHistogram";
55      this.Size = new System.Drawing.Size(289, 220);
56      ((System.ComponentModel.ISupportInitialize)(this.chart)).EndInit();
57      this.ResumeLayout(false);
58
59    }
60
61    #endregion
62
63    private HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart chart;
64  }
65}
Note: See TracBrowser for help on using the repository browser.