[6656] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2010 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 |
|
---|
| 22 | namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Views {
|
---|
| 23 | partial class SymbolicDataAnalysisSolutionResponseFunctionView {
|
---|
| 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 | this.flowLayoutPanel = new System.Windows.Forms.FlowLayoutPanel();
|
---|
| 51 | this.responseChart = new System.Windows.Forms.DataVisualization.Charting.Chart();
|
---|
| 52 | this.comboBox = new System.Windows.Forms.ComboBox();
|
---|
| 53 | this.freeVariableLabel = new System.Windows.Forms.Label();
|
---|
| 54 | ((System.ComponentModel.ISupportInitialize)(this.responseChart)).BeginInit();
|
---|
| 55 | this.SuspendLayout();
|
---|
| 56 | //
|
---|
| 57 | // flowLayoutPanel
|
---|
| 58 | //
|
---|
| 59 | this.flowLayoutPanel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 60 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 61 | this.flowLayoutPanel.AutoScroll = true;
|
---|
| 62 | this.flowLayoutPanel.Location = new System.Drawing.Point(3, 202);
|
---|
| 63 | this.flowLayoutPanel.Name = "flowLayoutPanel";
|
---|
| 64 | this.flowLayoutPanel.Size = new System.Drawing.Size(261, 268);
|
---|
| 65 | this.flowLayoutPanel.TabIndex = 2;
|
---|
| 66 | this.flowLayoutPanel.WrapContents = false;
|
---|
| 67 | //
|
---|
| 68 | // responseChart
|
---|
| 69 | //
|
---|
| 70 | this.responseChart.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 71 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 72 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 73 | chartArea1.Name = "ChartArea";
|
---|
| 74 | this.responseChart.ChartAreas.Add(chartArea1);
|
---|
| 75 | legend1.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Top;
|
---|
| 76 | legend1.LegendStyle = System.Windows.Forms.DataVisualization.Charting.LegendStyle.Row;
|
---|
| 77 | legend1.Name = "Legend";
|
---|
| 78 | this.responseChart.Legends.Add(legend1);
|
---|
| 79 | this.responseChart.Location = new System.Drawing.Point(3, 30);
|
---|
| 80 | this.responseChart.Name = "responseChart";
|
---|
| 81 | series1.ChartArea = "ChartArea";
|
---|
| 82 | series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.FastLine;
|
---|
| 83 | series1.Legend = "Legend";
|
---|
| 84 | series1.MarkerSize = 3;
|
---|
| 85 | series1.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Cross;
|
---|
| 86 | series1.Name = "Model Response";
|
---|
| 87 | this.responseChart.Series.Add(series1);
|
---|
| 88 | this.responseChart.Size = new System.Drawing.Size(258, 166);
|
---|
| 89 | this.responseChart.TabIndex = 3;
|
---|
| 90 | //
|
---|
| 91 | // comboBox
|
---|
| 92 | //
|
---|
| 93 | this.comboBox.FormattingEnabled = true;
|
---|
| 94 | this.comboBox.Location = new System.Drawing.Point(80, 3);
|
---|
| 95 | this.comboBox.Name = "comboBox";
|
---|
| 96 | this.comboBox.Size = new System.Drawing.Size(166, 21);
|
---|
| 97 | this.comboBox.TabIndex = 4;
|
---|
| 98 | this.comboBox.SelectedIndexChanged += new System.EventHandler(this.ComboBoxSelectedIndexChanged);
|
---|
| 99 | //
|
---|
| 100 | // freeVariableLabel
|
---|
| 101 | //
|
---|
| 102 | this.freeVariableLabel.AutoSize = true;
|
---|
| 103 | this.freeVariableLabel.Location = new System.Drawing.Point(3, 6);
|
---|
| 104 | this.freeVariableLabel.Name = "freeVariableLabel";
|
---|
| 105 | this.freeVariableLabel.Size = new System.Drawing.Size(71, 13);
|
---|
| 106 | this.freeVariableLabel.TabIndex = 5;
|
---|
| 107 | this.freeVariableLabel.Text = "Free variable:";
|
---|
| 108 | //
|
---|
| 109 | // SymbolicDataAnalysisSolutionResponseFunctionView
|
---|
| 110 | //
|
---|
| 111 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 112 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
| 113 | this.Controls.Add(this.freeVariableLabel);
|
---|
| 114 | this.Controls.Add(this.comboBox);
|
---|
| 115 | this.Controls.Add(this.responseChart);
|
---|
| 116 | this.Controls.Add(this.flowLayoutPanel);
|
---|
| 117 | this.Name = "SymbolicDataAnalysisSolutionResponseFunctionView";
|
---|
| 118 | this.Size = new System.Drawing.Size(264, 473);
|
---|
| 119 | ((System.ComponentModel.ISupportInitialize)(this.responseChart)).EndInit();
|
---|
| 120 | this.ResumeLayout(false);
|
---|
| 121 | this.PerformLayout();
|
---|
| 122 |
|
---|
| 123 | }
|
---|
| 124 |
|
---|
| 125 | #endregion
|
---|
| 126 |
|
---|
| 127 | private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel;
|
---|
| 128 | private System.Windows.Forms.DataVisualization.Charting.Chart responseChart;
|
---|
| 129 | private System.Windows.Forms.ComboBox comboBox;
|
---|
| 130 | private System.Windows.Forms.Label freeVariableLabel;
|
---|
| 131 | }
|
---|
| 132 | }
|
---|