Free cookie consent management tool by TermsFeed Policy Generator

source: branches/GP-MoveOperators/HeuristicLab.Problems.DataAnalysis.Views/3.4/Regression/RegressionSolutionResidualHistogram.Designer.cs @ 8085

Last change on this file since 8085 was 8085, checked in by gkronber, 12 years ago

#1847: merged trunk changes r7800:HEAD into gp move operators branch

File size: 2.9 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(358, 225);
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.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
53      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
54      this.Controls.Add(this.chart);
55      this.Name = "RegressionSolutionResidualHistogram";
56      this.Size = new System.Drawing.Size(289, 220);
57      ((System.ComponentModel.ISupportInitialize)(this.chart)).EndInit();
58      this.ResumeLayout(false);
59
60    }
61
62    #endregion
63
64    private HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart chart;
65  }
66}
Note: See TracBrowser for help on using the repository browser.