Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing Enhancements/HeuristicLab.DataPreprocessing.Views/3.4/ScatterPlotSingleView.Designer.cs @ 14724

Last change on this file since 14724 was 14724, checked in by mkommend, 7 years ago

#2709: Adapted data preprocessing scatter plot to allow grouping of string variables.

File size: 18.5 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2016 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.DataPreprocessing.Views {
23  partial class ScatterPlotSingleView {
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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ScatterPlotSingleView));
48      this.scatterPlotControl = new HeuristicLab.Analysis.Views.ScatterPlotControl();
49      this.groupBox1 = new System.Windows.Forms.GroupBox();
50      this.useGradientCheckBox = new System.Windows.Forms.CheckBox();
51      this.label3 = new System.Windows.Forms.Label();
52      this.label2 = new System.Windows.Forms.Label();
53      this.label1 = new System.Windows.Forms.Label();
54      this.comboBoxGroup = new System.Windows.Forms.ComboBox();
55      this.comboBoxYVariable = new System.Windows.Forms.ComboBox();
56      this.comboBoxXVariable = new System.Windows.Forms.ComboBox();
57      this.regressionGroupBox = new System.Windows.Forms.GroupBox();
58      this.regressionTypeComboBox = new System.Windows.Forms.ComboBox();
59      this.polynomialRegressionOrderNumericUpDown = new System.Windows.Forms.NumericUpDown();
60      this.orderLabel = new System.Windows.Forms.Label();
61      this.label4 = new System.Windows.Forms.Label();
62      this.splitContainer1 = new System.Windows.Forms.SplitContainer();
63      this.gradientPanel = new System.Windows.Forms.Panel();
64      this.gradientPictureBox = new System.Windows.Forms.PictureBox();
65      this.gradientMinimumLabel = new System.Windows.Forms.Label();
66      this.gradientMaximumLabel = new System.Windows.Forms.Label();
67      this.groupBox1.SuspendLayout();
68      this.regressionGroupBox.SuspendLayout();
69      ((System.ComponentModel.ISupportInitialize)(this.polynomialRegressionOrderNumericUpDown)).BeginInit();
70      ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
71      this.splitContainer1.Panel1.SuspendLayout();
72      this.splitContainer1.Panel2.SuspendLayout();
73      this.splitContainer1.SuspendLayout();
74      this.gradientPanel.SuspendLayout();
75      ((System.ComponentModel.ISupportInitialize)(this.gradientPictureBox)).BeginInit();
76      this.SuspendLayout();
77      //
78      // scatterPlotControl
79      //
80      this.scatterPlotControl.Caption = "View";
81      this.scatterPlotControl.Content = null;
82      this.scatterPlotControl.Dock = System.Windows.Forms.DockStyle.Fill;
83      this.scatterPlotControl.Location = new System.Drawing.Point(0, 0);
84      this.scatterPlotControl.Name = "scatterPlotControl";
85      this.scatterPlotControl.ReadOnly = false;
86      this.scatterPlotControl.Size = new System.Drawing.Size(618, 517);
87      this.scatterPlotControl.TabIndex = 0;
88      //
89      // groupBox1
90      //
91      this.groupBox1.Controls.Add(this.useGradientCheckBox);
92      this.groupBox1.Controls.Add(this.label3);
93      this.groupBox1.Controls.Add(this.label2);
94      this.groupBox1.Controls.Add(this.label1);
95      this.groupBox1.Controls.Add(this.comboBoxGroup);
96      this.groupBox1.Controls.Add(this.comboBoxYVariable);
97      this.groupBox1.Controls.Add(this.comboBoxXVariable);
98      this.groupBox1.Dock = System.Windows.Forms.DockStyle.Top;
99      this.groupBox1.Location = new System.Drawing.Point(0, 0);
100      this.groupBox1.Name = "groupBox1";
101      this.groupBox1.Size = new System.Drawing.Size(172, 150);
102      this.groupBox1.TabIndex = 1;
103      this.groupBox1.TabStop = false;
104      this.groupBox1.Text = "Variables";
105      //
106      // useGradientCheckBox
107      //
108      this.useGradientCheckBox.AutoSize = true;
109      this.useGradientCheckBox.Location = new System.Drawing.Point(51, 121);
110      this.useGradientCheckBox.Name = "useGradientCheckBox";
111      this.useGradientCheckBox.Size = new System.Drawing.Size(115, 17);
112      this.useGradientCheckBox.TabIndex = 4;
113      this.useGradientCheckBox.Text = "Use Color Gradient";
114      this.useGradientCheckBox.UseVisualStyleBackColor = true;
115      this.useGradientCheckBox.CheckedChanged += new System.EventHandler(this.useGradientCheckBox_CheckedChanged);
116      //
117      // label3
118      //
119      this.label3.AutoSize = true;
120      this.label3.Location = new System.Drawing.Point(6, 97);
121      this.label3.Name = "label3";
122      this.label3.Size = new System.Drawing.Size(39, 13);
123      this.label3.TabIndex = 3;
124      this.label3.Text = "Group:";
125      //
126      // label2
127      //
128      this.label2.AutoSize = true;
129      this.label2.Location = new System.Drawing.Point(6, 63);
130      this.label2.Name = "label2";
131      this.label2.Size = new System.Drawing.Size(17, 13);
132      this.label2.TabIndex = 3;
133      this.label2.Text = "Y:";
134      //
135      // label1
136      //
137      this.label1.AutoSize = true;
138      this.label1.Location = new System.Drawing.Point(6, 29);
139      this.label1.Name = "label1";
140      this.label1.Size = new System.Drawing.Size(17, 13);
141      this.label1.TabIndex = 2;
142      this.label1.Text = "X:";
143      //
144      // comboBoxGroup
145      //
146      this.comboBoxGroup.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
147            | System.Windows.Forms.AnchorStyles.Right)));
148      this.comboBoxGroup.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
149      this.comboBoxGroup.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
150      this.comboBoxGroup.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
151      this.comboBoxGroup.FormattingEnabled = true;
152      this.comboBoxGroup.Location = new System.Drawing.Point(51, 94);
153      this.comboBoxGroup.Margin = new System.Windows.Forms.Padding(3, 10, 3, 3);
154      this.comboBoxGroup.Name = "comboBoxGroup";
155      this.comboBoxGroup.Size = new System.Drawing.Size(115, 21);
156      this.comboBoxGroup.TabIndex = 1;
157      this.comboBoxGroup.SelectedIndexChanged += new System.EventHandler(this.comboBoxGroup_SelectedIndexChanged);
158      //
159      // comboBoxYVariable
160      //
161      this.comboBoxYVariable.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
162            | System.Windows.Forms.AnchorStyles.Right)));
163      this.comboBoxYVariable.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
164      this.comboBoxYVariable.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
165      this.comboBoxYVariable.FormattingEnabled = true;
166      this.comboBoxYVariable.Location = new System.Drawing.Point(51, 60);
167      this.comboBoxYVariable.Margin = new System.Windows.Forms.Padding(3, 10, 3, 3);
168      this.comboBoxYVariable.Name = "comboBoxYVariable";
169      this.comboBoxYVariable.Size = new System.Drawing.Size(115, 21);
170      this.comboBoxYVariable.TabIndex = 1;
171      this.comboBoxYVariable.SelectedIndexChanged += new System.EventHandler(this.comboBoxYVariable_SelectedIndexChanged);
172      //
173      // comboBoxXVariable
174      //
175      this.comboBoxXVariable.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
176            | System.Windows.Forms.AnchorStyles.Right)));
177      this.comboBoxXVariable.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
178      this.comboBoxXVariable.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
179      this.comboBoxXVariable.FormattingEnabled = true;
180      this.comboBoxXVariable.Location = new System.Drawing.Point(51, 26);
181      this.comboBoxXVariable.Margin = new System.Windows.Forms.Padding(3, 10, 3, 3);
182      this.comboBoxXVariable.Name = "comboBoxXVariable";
183      this.comboBoxXVariable.Size = new System.Drawing.Size(115, 21);
184      this.comboBoxXVariable.TabIndex = 0;
185      this.comboBoxXVariable.SelectedIndexChanged += new System.EventHandler(this.comboBoxXVariable_SelectedIndexChanged);
186      //
187      // regressionGroupBox
188      //
189      this.regressionGroupBox.Controls.Add(this.regressionTypeComboBox);
190      this.regressionGroupBox.Controls.Add(this.polynomialRegressionOrderNumericUpDown);
191      this.regressionGroupBox.Controls.Add(this.orderLabel);
192      this.regressionGroupBox.Controls.Add(this.label4);
193      this.regressionGroupBox.Dock = System.Windows.Forms.DockStyle.Top;
194      this.regressionGroupBox.Location = new System.Drawing.Point(0, 150);
195      this.regressionGroupBox.Name = "regressionGroupBox";
196      this.regressionGroupBox.Size = new System.Drawing.Size(172, 78);
197      this.regressionGroupBox.TabIndex = 4;
198      this.regressionGroupBox.TabStop = false;
199      this.regressionGroupBox.Text = "Regression";
200      //
201      // regressionTypeComboBox
202      //
203      this.regressionTypeComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
204            | System.Windows.Forms.AnchorStyles.Right)));
205      this.regressionTypeComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
206      this.regressionTypeComboBox.FormattingEnabled = true;
207      this.regressionTypeComboBox.Location = new System.Drawing.Point(51, 19);
208      this.regressionTypeComboBox.Name = "regressionTypeComboBox";
209      this.regressionTypeComboBox.Size = new System.Drawing.Size(115, 21);
210      this.regressionTypeComboBox.TabIndex = 14;
211      this.regressionTypeComboBox.SelectedIndexChanged += new System.EventHandler(this.regressionTypeComboBox_SelectedIndexChanged);
212      //
213      // polynomialRegressionOrderNumericUpDown
214      //
215      this.polynomialRegressionOrderNumericUpDown.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
216            | System.Windows.Forms.AnchorStyles.Right)));
217      this.polynomialRegressionOrderNumericUpDown.Location = new System.Drawing.Point(51, 47);
218      this.polynomialRegressionOrderNumericUpDown.Margin = new System.Windows.Forms.Padding(9, 3, 3, 3);
219      this.polynomialRegressionOrderNumericUpDown.Maximum = new decimal(new int[] {
220            6,
221            0,
222            0,
223            0});
224      this.polynomialRegressionOrderNumericUpDown.Minimum = new decimal(new int[] {
225            2,
226            0,
227            0,
228            0});
229      this.polynomialRegressionOrderNumericUpDown.Name = "polynomialRegressionOrderNumericUpDown";
230      this.polynomialRegressionOrderNumericUpDown.Size = new System.Drawing.Size(115, 20);
231      this.polynomialRegressionOrderNumericUpDown.TabIndex = 15;
232      this.polynomialRegressionOrderNumericUpDown.Value = new decimal(new int[] {
233            2,
234            0,
235            0,
236            0});
237      this.polynomialRegressionOrderNumericUpDown.ValueChanged += new System.EventHandler(this.polynomialRegressionOrderNumericUpDown_ValueChanged);
238      //
239      // orderLabel
240      //
241      this.orderLabel.AutoSize = true;
242      this.orderLabel.Location = new System.Drawing.Point(6, 49);
243      this.orderLabel.Name = "orderLabel";
244      this.orderLabel.Size = new System.Drawing.Size(36, 13);
245      this.orderLabel.TabIndex = 16;
246      this.orderLabel.Text = "Order:";
247      //
248      // label4
249      //
250      this.label4.AutoSize = true;
251      this.label4.Location = new System.Drawing.Point(6, 22);
252      this.label4.Name = "label4";
253      this.label4.Size = new System.Drawing.Size(34, 13);
254      this.label4.TabIndex = 13;
255      this.label4.Text = "Type:";
256      //
257      // splitContainer1
258      //
259      this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
260      this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
261      this.splitContainer1.Location = new System.Drawing.Point(0, 0);
262      this.splitContainer1.Name = "splitContainer1";
263      //
264      // splitContainer1.Panel1
265      //
266      this.splitContainer1.Panel1.Controls.Add(this.regressionGroupBox);
267      this.splitContainer1.Panel1.Controls.Add(this.groupBox1);
268      //
269      // splitContainer1.Panel2
270      //
271      this.splitContainer1.Panel2.Controls.Add(this.scatterPlotControl);
272      this.splitContainer1.Panel2.Controls.Add(this.gradientPanel);
273      this.splitContainer1.Size = new System.Drawing.Size(863, 517);
274      this.splitContainer1.SplitterDistance = 172;
275      this.splitContainer1.TabIndex = 5;
276      //
277      // gradientPanel
278      //
279      this.gradientPanel.Controls.Add(this.gradientPictureBox);
280      this.gradientPanel.Controls.Add(this.gradientMinimumLabel);
281      this.gradientPanel.Controls.Add(this.gradientMaximumLabel);
282      this.gradientPanel.Dock = System.Windows.Forms.DockStyle.Right;
283      this.gradientPanel.Location = new System.Drawing.Point(618, 0);
284      this.gradientPanel.Name = "gradientPanel";
285      this.gradientPanel.Size = new System.Drawing.Size(69, 517);
286      this.gradientPanel.TabIndex = 1;
287      //
288      // gradientPictureBox
289      //
290      this.gradientPictureBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
291            | System.Windows.Forms.AnchorStyles.Left)));
292      this.gradientPictureBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
293      this.gradientPictureBox.Image = ((System.Drawing.Image)(resources.GetObject("gradientPictureBox.Image")));
294      this.gradientPictureBox.Location = new System.Drawing.Point(17, 29);
295      this.gradientPictureBox.Name = "gradientPictureBox";
296      this.gradientPictureBox.Size = new System.Drawing.Size(35, 460);
297      this.gradientPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
298      this.gradientPictureBox.TabIndex = 19;
299      this.gradientPictureBox.TabStop = false;
300      //
301      // gradientMinimumLabel
302      //
303      this.gradientMinimumLabel.BackColor = System.Drawing.Color.Transparent;
304      this.gradientMinimumLabel.Dock = System.Windows.Forms.DockStyle.Bottom;
305      this.gradientMinimumLabel.Location = new System.Drawing.Point(0, 492);
306      this.gradientMinimumLabel.Name = "gradientMinimumLabel";
307      this.gradientMinimumLabel.Size = new System.Drawing.Size(69, 25);
308      this.gradientMinimumLabel.TabIndex = 18;
309      this.gradientMinimumLabel.Text = "0.0";
310      this.gradientMinimumLabel.TextAlign = System.Drawing.ContentAlignment.TopCenter;
311      //
312      // gradientMaximumLabel
313      //
314      this.gradientMaximumLabel.BackColor = System.Drawing.Color.Transparent;
315      this.gradientMaximumLabel.Dock = System.Windows.Forms.DockStyle.Top;
316      this.gradientMaximumLabel.Location = new System.Drawing.Point(0, 0);
317      this.gradientMaximumLabel.Name = "gradientMaximumLabel";
318      this.gradientMaximumLabel.Size = new System.Drawing.Size(69, 25);
319      this.gradientMaximumLabel.TabIndex = 17;
320      this.gradientMaximumLabel.Text = "1.0";
321      this.gradientMaximumLabel.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
322      //
323      // ScatterPlotSingleView
324      //
325      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
326      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
327      this.Controls.Add(this.splitContainer1);
328      this.Name = "ScatterPlotSingleView";
329      this.Size = new System.Drawing.Size(863, 517);
330      this.groupBox1.ResumeLayout(false);
331      this.groupBox1.PerformLayout();
332      this.regressionGroupBox.ResumeLayout(false);
333      this.regressionGroupBox.PerformLayout();
334      ((System.ComponentModel.ISupportInitialize)(this.polynomialRegressionOrderNumericUpDown)).EndInit();
335      this.splitContainer1.Panel1.ResumeLayout(false);
336      this.splitContainer1.Panel2.ResumeLayout(false);
337      ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
338      this.splitContainer1.ResumeLayout(false);
339      this.gradientPanel.ResumeLayout(false);
340      ((System.ComponentModel.ISupportInitialize)(this.gradientPictureBox)).EndInit();
341      this.ResumeLayout(false);
342
343    }
344
345    #endregion
346
347    private HeuristicLab.Analysis.Views.ScatterPlotControl scatterPlotControl;
348    private System.Windows.Forms.GroupBox groupBox1;
349    private System.Windows.Forms.Label label2;
350    private System.Windows.Forms.Label label1;
351    private System.Windows.Forms.ComboBox comboBoxYVariable;
352    private System.Windows.Forms.ComboBox comboBoxXVariable;
353    private System.Windows.Forms.ComboBox comboBoxGroup;
354    private System.Windows.Forms.Label label3;
355    private System.Windows.Forms.GroupBox regressionGroupBox;
356    private System.Windows.Forms.ComboBox regressionTypeComboBox;
357    private System.Windows.Forms.NumericUpDown polynomialRegressionOrderNumericUpDown;
358    private System.Windows.Forms.Label orderLabel;
359    private System.Windows.Forms.Label label4;
360    private System.Windows.Forms.SplitContainer splitContainer1;
361    private System.Windows.Forms.CheckBox useGradientCheckBox;
362    private System.Windows.Forms.Panel gradientPanel;
363    private System.Windows.Forms.Label gradientMinimumLabel;
364    private System.Windows.Forms.Label gradientMaximumLabel;
365    protected System.Windows.Forms.PictureBox gradientPictureBox;
366  }
367}
Note: See TracBrowser for help on using the repository browser.