[6656] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[12012] | 3 | * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[6656] | 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 |
|
---|
[7028] | 22 | namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Regression.Views {
|
---|
[7122] | 23 | partial class SymbolicRegressionSolutionResponseFunctionView {
|
---|
[6656] | 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();
|
---|
[7028] | 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();
|
---|
[6656] | 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";
|
---|
[7028] | 86 | series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.FastPoint;
|
---|
[6656] | 87 | series1.Legend = "Legend";
|
---|
[7028] | 88 | series1.MarkerColor = System.Drawing.Color.Gold;
|
---|
[6656] | 89 | series1.MarkerSize = 3;
|
---|
[7028] | 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;
|
---|
[6656] | 120 | this.responseChart.Series.Add(series1);
|
---|
[7028] | 121 | this.responseChart.Series.Add(series2);
|
---|
| 122 | this.responseChart.Series.Add(series3);
|
---|
| 123 | this.responseChart.Series.Add(series4);
|
---|
| 124 | this.responseChart.Series.Add(series5);
|
---|
[6656] | 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);
|
---|
[7967] | 149 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
|
---|
[6656] | 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 | }
|
---|