[8924] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[12012] | 3 | * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[8924] | 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.Views {
|
---|
[6642] | 23 | partial class RegressionSolutionErrorCharacteristicsCurveView {
|
---|
[4417] | 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 | this.components = new System.ComponentModel.Container();
|
---|
[13002] | 48 | System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
|
---|
| 49 | System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
|
---|
[4651] | 50 | this.chart = new HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart();
|
---|
[4417] | 51 | this.label1 = new System.Windows.Forms.Label();
|
---|
| 52 | this.cmbSamples = new System.Windows.Forms.ComboBox();
|
---|
[12493] | 53 | this.residualComboBox = new System.Windows.Forms.ComboBox();
|
---|
[4417] | 54 | ((System.ComponentModel.ISupportInitialize)(this.chart)).BeginInit();
|
---|
| 55 | this.SuspendLayout();
|
---|
| 56 | //
|
---|
| 57 | // chart
|
---|
| 58 | //
|
---|
[13002] | 59 | this.chart.AllowDrop = true;
|
---|
[12493] | 60 | this.chart.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 61 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 62 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[13002] | 63 | chartArea1.Name = "ChartArea1";
|
---|
| 64 | this.chart.ChartAreas.Add(chartArea1);
|
---|
| 65 | legend1.Alignment = System.Drawing.StringAlignment.Center;
|
---|
| 66 | legend1.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Top;
|
---|
| 67 | legend1.Name = "Legend1";
|
---|
| 68 | this.chart.Legends.Add(legend1);
|
---|
[6642] | 69 | this.chart.Location = new System.Drawing.Point(6, 28);
|
---|
[4417] | 70 | this.chart.Name = "chart";
|
---|
| 71 | this.chart.Size = new System.Drawing.Size(366, 202);
|
---|
| 72 | this.chart.TabIndex = 0;
|
---|
| 73 | this.chart.Text = "chart";
|
---|
[13002] | 74 | this.chart.DragDrop += new System.Windows.Forms.DragEventHandler(this.chart_DragDrop);
|
---|
| 75 | this.chart.DragEnter += new System.Windows.Forms.DragEventHandler(this.chart_DragEnter);
|
---|
[7700] | 76 | this.chart.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.Chart_MouseDoubleClick);
|
---|
| 77 | this.chart.MouseMove += new System.Windows.Forms.MouseEventHandler(this.chart_MouseMove);
|
---|
[4417] | 78 | //
|
---|
| 79 | // label1
|
---|
| 80 | //
|
---|
| 81 | this.label1.AutoSize = true;
|
---|
| 82 | this.label1.Location = new System.Drawing.Point(3, 6);
|
---|
| 83 | this.label1.Name = "label1";
|
---|
| 84 | this.label1.Size = new System.Drawing.Size(47, 13);
|
---|
| 85 | this.label1.TabIndex = 4;
|
---|
| 86 | this.label1.Text = "Samples";
|
---|
| 87 | //
|
---|
| 88 | // cmbSamples
|
---|
| 89 | //
|
---|
| 90 | this.cmbSamples.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
---|
| 91 | this.cmbSamples.FormattingEnabled = true;
|
---|
| 92 | this.cmbSamples.Location = new System.Drawing.Point(56, 3);
|
---|
| 93 | this.cmbSamples.Name = "cmbSamples";
|
---|
| 94 | this.cmbSamples.Size = new System.Drawing.Size(121, 21);
|
---|
| 95 | this.cmbSamples.TabIndex = 3;
|
---|
| 96 | this.cmbSamples.SelectedIndexChanged += new System.EventHandler(this.cmbSamples_SelectedIndexChanged);
|
---|
| 97 | //
|
---|
[12493] | 98 | // residualComboBox
|
---|
| 99 | //
|
---|
| 100 | this.residualComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
---|
| 101 | this.residualComboBox.FormattingEnabled = true;
|
---|
| 102 | this.residualComboBox.Items.AddRange(new object[] {
|
---|
| 103 | "Absolute error",
|
---|
| 104 | "Squared error",
|
---|
| 105 | "Relative error"});
|
---|
| 106 | this.residualComboBox.Location = new System.Drawing.Point(183, 3);
|
---|
| 107 | this.residualComboBox.Name = "residualComboBox";
|
---|
| 108 | this.residualComboBox.Size = new System.Drawing.Size(121, 21);
|
---|
| 109 | this.residualComboBox.TabIndex = 5;
|
---|
| 110 | this.residualComboBox.SelectedIndexChanged += new System.EventHandler(this.residualComboBox_SelectedIndexChanged);
|
---|
| 111 | //
|
---|
[6642] | 112 | // RegressionSolutionErrorCharacteristicsCurveView
|
---|
[4417] | 113 | //
|
---|
[7967] | 114 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
|
---|
[12493] | 115 | this.Controls.Add(this.residualComboBox);
|
---|
[4417] | 116 | this.Controls.Add(this.label1);
|
---|
| 117 | this.Controls.Add(this.cmbSamples);
|
---|
| 118 | this.Controls.Add(this.chart);
|
---|
[6642] | 119 | this.Name = "RegressionSolutionErrorCharacteristicsCurveView";
|
---|
[4417] | 120 | this.Size = new System.Drawing.Size(366, 230);
|
---|
| 121 | ((System.ComponentModel.ISupportInitialize)(this.chart)).EndInit();
|
---|
| 122 | this.ResumeLayout(false);
|
---|
| 123 | this.PerformLayout();
|
---|
| 124 |
|
---|
| 125 | }
|
---|
| 126 |
|
---|
| 127 | #endregion
|
---|
| 128 |
|
---|
[6642] | 129 | protected HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart chart;
|
---|
| 130 | protected System.Windows.Forms.Label label1;
|
---|
| 131 | protected System.Windows.Forms.ComboBox cmbSamples;
|
---|
[12493] | 132 | protected System.Windows.Forms.ComboBox residualComboBox;
|
---|
[4417] | 133 | }
|
---|
| 134 | }
|
---|