Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression.Views/3.4/SymbolicRegressionSolutionResponseFunctionView.Designer.cs @ 11068

Last change on this file since 11068 was 9456, checked in by swagner, 11 years ago

Updated copyright year and added some missing license headers (#1889)

File size: 8.5 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Regression.Views {
23  partial class SymbolicRegressionSolutionResponseFunctionView {
24    /// <summary>
25    /// Required designer variable.
26    /// </summary>
27    private System.ComponentModel.IContainer components = null;
28
29    /// <summary>
30    /// Clean up any resources being used.
31    /// </summary>
32    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
33    protected override void Dispose(bool disposing) {
34      if (disposing && (components != null)) {
35        components.Dispose();
36      }
37      base.Dispose(disposing);
38    }
39
40    #region Component Designer generated code
41
42    /// <summary>
43    /// Required method for Designer support - do not modify
44    /// the contents of this method with the code editor.
45    /// </summary>
46    private void InitializeComponent() {
47      System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
48      System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
49      System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
50      System.Windows.Forms.DataVisualization.Charting.Series series2 = new System.Windows.Forms.DataVisualization.Charting.Series();
51      System.Windows.Forms.DataVisualization.Charting.Series series3 = new System.Windows.Forms.DataVisualization.Charting.Series();
52      System.Windows.Forms.DataVisualization.Charting.Series series4 = new System.Windows.Forms.DataVisualization.Charting.Series();
53      System.Windows.Forms.DataVisualization.Charting.Series series5 = new System.Windows.Forms.DataVisualization.Charting.Series();
54      this.flowLayoutPanel = new System.Windows.Forms.FlowLayoutPanel();
55      this.responseChart = new System.Windows.Forms.DataVisualization.Charting.Chart();
56      this.comboBox = new System.Windows.Forms.ComboBox();
57      this.freeVariableLabel = new System.Windows.Forms.Label();
58      ((System.ComponentModel.ISupportInitialize)(this.responseChart)).BeginInit();
59      this.SuspendLayout();
60      //
61      // flowLayoutPanel
62      //
63      this.flowLayoutPanel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
64                  | System.Windows.Forms.AnchorStyles.Right)));
65      this.flowLayoutPanel.AutoScroll = true;
66      this.flowLayoutPanel.Location = new System.Drawing.Point(3, 202);
67      this.flowLayoutPanel.Name = "flowLayoutPanel";
68      this.flowLayoutPanel.Size = new System.Drawing.Size(261, 268);
69      this.flowLayoutPanel.TabIndex = 2;
70      this.flowLayoutPanel.WrapContents = false;
71      //
72      // responseChart
73      //
74      this.responseChart.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
75                  | System.Windows.Forms.AnchorStyles.Left)
76                  | System.Windows.Forms.AnchorStyles.Right)));
77      chartArea1.Name = "ChartArea";
78      this.responseChart.ChartAreas.Add(chartArea1);
79      legend1.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Top;
80      legend1.LegendStyle = System.Windows.Forms.DataVisualization.Charting.LegendStyle.Row;
81      legend1.Name = "Legend";
82      this.responseChart.Legends.Add(legend1);
83      this.responseChart.Location = new System.Drawing.Point(3, 30);
84      this.responseChart.Name = "responseChart";
85      series1.ChartArea = "ChartArea";
86      series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.FastPoint;
87      series1.Legend = "Legend";
88      series1.MarkerColor = System.Drawing.Color.Gold;
89      series1.MarkerSize = 3;
90      series1.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Diamond;
91      series1.Name = "Training Data (edge)";
92      series2.ChartArea = "ChartArea";
93      series2.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.FastPoint;
94      series2.Legend = "Legend";
95      series2.MarkerColor = System.Drawing.Color.OrangeRed;
96      series2.MarkerSize = 3;
97      series2.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Diamond;
98      series2.Name = "Test Data (edge)";
99      series3.ChartArea = "ChartArea";
100      series3.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.FastPoint;
101      series3.Legend = "Legend";
102      series3.MarkerColor = System.Drawing.Color.Gold;
103      series3.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Diamond;
104      series3.Name = "Training Data";
105      series4.ChartArea = "ChartArea";
106      series4.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.FastPoint;
107      series4.Legend = "Legend";
108      series4.MarkerColor = System.Drawing.Color.OrangeRed;
109      series4.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Diamond;
110      series4.Name = "Test Data";
111      series5.BorderWidth = 3;
112      series5.ChartArea = "ChartArea";
113      series5.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.FastLine;
114      series5.Color = System.Drawing.Color.DodgerBlue;
115      series5.Legend = "Legend";
116      series5.MarkerSize = 1;
117      series5.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Cross;
118      series5.Name = "Model Response";
119      series5.ShadowColor = System.Drawing.Color.DodgerBlue;
120      this.responseChart.Series.Add(series1);
121      this.responseChart.Series.Add(series2);
122      this.responseChart.Series.Add(series3);
123      this.responseChart.Series.Add(series4);
124      this.responseChart.Series.Add(series5);
125      this.responseChart.Size = new System.Drawing.Size(258, 166);
126      this.responseChart.TabIndex = 3;
127      //
128      // comboBox
129      //
130      this.comboBox.FormattingEnabled = true;
131      this.comboBox.Location = new System.Drawing.Point(80, 3);
132      this.comboBox.Name = "comboBox";
133      this.comboBox.Size = new System.Drawing.Size(166, 21);
134      this.comboBox.TabIndex = 4;
135      this.comboBox.SelectedIndexChanged += new System.EventHandler(this.ComboBoxSelectedIndexChanged);
136      //
137      // freeVariableLabel
138      //
139      this.freeVariableLabel.AutoSize = true;
140      this.freeVariableLabel.Location = new System.Drawing.Point(3, 6);
141      this.freeVariableLabel.Name = "freeVariableLabel";
142      this.freeVariableLabel.Size = new System.Drawing.Size(71, 13);
143      this.freeVariableLabel.TabIndex = 5;
144      this.freeVariableLabel.Text = "Free variable:";
145      //
146      // SymbolicDataAnalysisSolutionResponseFunctionView
147      //
148      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
149      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
150      this.Controls.Add(this.freeVariableLabel);
151      this.Controls.Add(this.comboBox);
152      this.Controls.Add(this.responseChart);
153      this.Controls.Add(this.flowLayoutPanel);
154      this.Name = "SymbolicDataAnalysisSolutionResponseFunctionView";
155      this.Size = new System.Drawing.Size(264, 473);
156      ((System.ComponentModel.ISupportInitialize)(this.responseChart)).EndInit();
157      this.ResumeLayout(false);
158      this.PerformLayout();
159
160    }
161
162    #endregion
163
164    private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel;
165    private System.Windows.Forms.DataVisualization.Charting.Chart responseChart;
166    private System.Windows.Forms.ComboBox comboBox;
167    private System.Windows.Forms.Label freeVariableLabel;
168  }
169}
Note: See TracBrowser for help on using the repository browser.