[7255] | 1 | namespace HeuristicLab.Problems.DataAnalysis.Views {
|
---|
[7186] | 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";
|
---|
[7255] | 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);
|
---|
[7186] | 48 | //
|
---|
| 49 | // RegressionSolutionResidualHistogram
|
---|
| 50 | //
|
---|
[7255] | 51 | this.AllowDrop = true;
|
---|
[7186] | 52 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 53 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
| 54 | this.Controls.Add(this.chart);
|
---|
| 55 | this.Name = "RegressionSolutionResidualHistogram";
|
---|
[7255] | 56 | this.Size = new System.Drawing.Size(289, 220);
|
---|
[7186] | 57 | ((System.ComponentModel.ISupportInitialize)(this.chart)).EndInit();
|
---|
| 58 | this.ResumeLayout(false);
|
---|
| 59 |
|
---|
| 60 | }
|
---|
| 61 |
|
---|
| 62 | #endregion
|
---|
| 63 |
|
---|
[7255] | 64 | private HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart chart;
|
---|
[7186] | 65 | }
|
---|
| 66 | }
|
---|