Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 14521 was 14521, checked in by pfleck, 8 years ago

#2709 Added an option for the preprocessing scatterplot to use a color gradient instead of the chart color palette.

File size: 18.1 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.gradientMinimumLabel = new System.Windows.Forms.Label();
65      this.gradientMaximumLabel = new System.Windows.Forms.Label();
66      this.gradientPictureBox = new System.Windows.Forms.PictureBox();
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.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
149      this.comboBoxGroup.FormattingEnabled = true;
150      this.comboBoxGroup.Location = new System.Drawing.Point(51, 94);
151      this.comboBoxGroup.Margin = new System.Windows.Forms.Padding(3, 10, 3, 3);
152      this.comboBoxGroup.Name = "comboBoxGroup";
153      this.comboBoxGroup.Size = new System.Drawing.Size(115, 21);
154      this.comboBoxGroup.TabIndex = 1;
155      this.comboBoxGroup.SelectedIndexChanged += new System.EventHandler(this.comboBoxGroup_SelectedIndexChanged);
156      //
157      // comboBoxYVariable
158      //
159      this.comboBoxYVariable.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
160            | System.Windows.Forms.AnchorStyles.Right)));
161      this.comboBoxYVariable.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
162      this.comboBoxYVariable.FormattingEnabled = true;
163      this.comboBoxYVariable.Location = new System.Drawing.Point(51, 60);
164      this.comboBoxYVariable.Margin = new System.Windows.Forms.Padding(3, 10, 3, 3);
165      this.comboBoxYVariable.Name = "comboBoxYVariable";
166      this.comboBoxYVariable.Size = new System.Drawing.Size(115, 21);
167      this.comboBoxYVariable.TabIndex = 1;
168      this.comboBoxYVariable.SelectedIndexChanged += new System.EventHandler(this.comboBoxYVariable_SelectedIndexChanged);
169      //
170      // comboBoxXVariable
171      //
172      this.comboBoxXVariable.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
173            | System.Windows.Forms.AnchorStyles.Right)));
174      this.comboBoxXVariable.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
175      this.comboBoxXVariable.FormattingEnabled = true;
176      this.comboBoxXVariable.Location = new System.Drawing.Point(51, 26);
177      this.comboBoxXVariable.Margin = new System.Windows.Forms.Padding(3, 10, 3, 3);
178      this.comboBoxXVariable.Name = "comboBoxXVariable";
179      this.comboBoxXVariable.Size = new System.Drawing.Size(115, 21);
180      this.comboBoxXVariable.TabIndex = 0;
181      this.comboBoxXVariable.SelectedIndexChanged += new System.EventHandler(this.comboBoxXVariable_SelectedIndexChanged);
182      //
183      // regressionGroupBox
184      //
185      this.regressionGroupBox.Controls.Add(this.regressionTypeComboBox);
186      this.regressionGroupBox.Controls.Add(this.polynomialRegressionOrderNumericUpDown);
187      this.regressionGroupBox.Controls.Add(this.orderLabel);
188      this.regressionGroupBox.Controls.Add(this.label4);
189      this.regressionGroupBox.Dock = System.Windows.Forms.DockStyle.Top;
190      this.regressionGroupBox.Location = new System.Drawing.Point(0, 150);
191      this.regressionGroupBox.Name = "regressionGroupBox";
192      this.regressionGroupBox.Size = new System.Drawing.Size(172, 78);
193      this.regressionGroupBox.TabIndex = 4;
194      this.regressionGroupBox.TabStop = false;
195      this.regressionGroupBox.Text = "Regression";
196      //
197      // regressionTypeComboBox
198      //
199      this.regressionTypeComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
200            | System.Windows.Forms.AnchorStyles.Right)));
201      this.regressionTypeComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
202      this.regressionTypeComboBox.FormattingEnabled = true;
203      this.regressionTypeComboBox.Location = new System.Drawing.Point(51, 19);
204      this.regressionTypeComboBox.Name = "regressionTypeComboBox";
205      this.regressionTypeComboBox.Size = new System.Drawing.Size(115, 21);
206      this.regressionTypeComboBox.TabIndex = 14;
207      this.regressionTypeComboBox.SelectedIndexChanged += new System.EventHandler(this.regressionTypeComboBox_SelectedIndexChanged);
208      //
209      // polynomialRegressionOrderNumericUpDown
210      //
211      this.polynomialRegressionOrderNumericUpDown.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
212            | System.Windows.Forms.AnchorStyles.Right)));
213      this.polynomialRegressionOrderNumericUpDown.Location = new System.Drawing.Point(51, 47);
214      this.polynomialRegressionOrderNumericUpDown.Margin = new System.Windows.Forms.Padding(9, 3, 3, 3);
215      this.polynomialRegressionOrderNumericUpDown.Maximum = new decimal(new int[] {
216            6,
217            0,
218            0,
219            0});
220      this.polynomialRegressionOrderNumericUpDown.Minimum = new decimal(new int[] {
221            2,
222            0,
223            0,
224            0});
225      this.polynomialRegressionOrderNumericUpDown.Name = "polynomialRegressionOrderNumericUpDown";
226      this.polynomialRegressionOrderNumericUpDown.Size = new System.Drawing.Size(115, 20);
227      this.polynomialRegressionOrderNumericUpDown.TabIndex = 15;
228      this.polynomialRegressionOrderNumericUpDown.Value = new decimal(new int[] {
229            2,
230            0,
231            0,
232            0});
233      this.polynomialRegressionOrderNumericUpDown.ValueChanged += new System.EventHandler(this.polynomialRegressionOrderNumericUpDown_ValueChanged);
234      //
235      // orderLabel
236      //
237      this.orderLabel.AutoSize = true;
238      this.orderLabel.Location = new System.Drawing.Point(6, 49);
239      this.orderLabel.Name = "orderLabel";
240      this.orderLabel.Size = new System.Drawing.Size(36, 13);
241      this.orderLabel.TabIndex = 16;
242      this.orderLabel.Text = "Order:";
243      //
244      // label4
245      //
246      this.label4.AutoSize = true;
247      this.label4.Location = new System.Drawing.Point(6, 22);
248      this.label4.Name = "label4";
249      this.label4.Size = new System.Drawing.Size(34, 13);
250      this.label4.TabIndex = 13;
251      this.label4.Text = "Type:";
252      //
253      // splitContainer1
254      //
255      this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
256      this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
257      this.splitContainer1.Location = new System.Drawing.Point(0, 0);
258      this.splitContainer1.Name = "splitContainer1";
259      //
260      // splitContainer1.Panel1
261      //
262      this.splitContainer1.Panel1.Controls.Add(this.regressionGroupBox);
263      this.splitContainer1.Panel1.Controls.Add(this.groupBox1);
264      //
265      // splitContainer1.Panel2
266      //
267      this.splitContainer1.Panel2.Controls.Add(this.scatterPlotControl);
268      this.splitContainer1.Panel2.Controls.Add(this.gradientPanel);
269      this.splitContainer1.Size = new System.Drawing.Size(863, 517);
270      this.splitContainer1.SplitterDistance = 172;
271      this.splitContainer1.TabIndex = 5;
272      //
273      // gradientPanel
274      //
275      this.gradientPanel.Controls.Add(this.gradientPictureBox);
276      this.gradientPanel.Controls.Add(this.gradientMinimumLabel);
277      this.gradientPanel.Controls.Add(this.gradientMaximumLabel);
278      this.gradientPanel.Dock = System.Windows.Forms.DockStyle.Right;
279      this.gradientPanel.Location = new System.Drawing.Point(618, 0);
280      this.gradientPanel.Name = "gradientPanel";
281      this.gradientPanel.Size = new System.Drawing.Size(69, 517);
282      this.gradientPanel.TabIndex = 1;
283      //
284      // gradientMinimumLabel
285      //
286      this.gradientMinimumLabel.BackColor = System.Drawing.Color.Transparent;
287      this.gradientMinimumLabel.Dock = System.Windows.Forms.DockStyle.Bottom;
288      this.gradientMinimumLabel.Location = new System.Drawing.Point(0, 492);
289      this.gradientMinimumLabel.Name = "gradientMinimumLabel";
290      this.gradientMinimumLabel.Size = new System.Drawing.Size(69, 25);
291      this.gradientMinimumLabel.TabIndex = 18;
292      this.gradientMinimumLabel.Text = "0.0";
293      this.gradientMinimumLabel.TextAlign = System.Drawing.ContentAlignment.TopCenter;
294      //
295      // gradientMaximumLabel
296      //
297      this.gradientMaximumLabel.BackColor = System.Drawing.Color.Transparent;
298      this.gradientMaximumLabel.Dock = System.Windows.Forms.DockStyle.Top;
299      this.gradientMaximumLabel.Location = new System.Drawing.Point(0, 0);
300      this.gradientMaximumLabel.Name = "gradientMaximumLabel";
301      this.gradientMaximumLabel.Size = new System.Drawing.Size(69, 25);
302      this.gradientMaximumLabel.TabIndex = 17;
303      this.gradientMaximumLabel.Text = "1.0";
304      this.gradientMaximumLabel.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
305      //
306      // gradientPictureBox
307      //
308      this.gradientPictureBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
309            | System.Windows.Forms.AnchorStyles.Left)));
310      this.gradientPictureBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
311      this.gradientPictureBox.Image = ((System.Drawing.Image)(resources.GetObject("GradientPictureBox.Image")));
312      this.gradientPictureBox.Location = new System.Drawing.Point(17, 29);
313      this.gradientPictureBox.Name = "gradientPictureBox";
314      this.gradientPictureBox.Size = new System.Drawing.Size(35, 460);
315      this.gradientPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
316      this.gradientPictureBox.TabIndex = 19;
317      this.gradientPictureBox.TabStop = false;
318      //
319      // ScatterPlotSingleView
320      //
321      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
322      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
323      this.Controls.Add(this.splitContainer1);
324      this.Name = "ScatterPlotSingleView";
325      this.Size = new System.Drawing.Size(863, 517);
326      this.groupBox1.ResumeLayout(false);
327      this.groupBox1.PerformLayout();
328      this.regressionGroupBox.ResumeLayout(false);
329      this.regressionGroupBox.PerformLayout();
330      ((System.ComponentModel.ISupportInitialize)(this.polynomialRegressionOrderNumericUpDown)).EndInit();
331      this.splitContainer1.Panel1.ResumeLayout(false);
332      this.splitContainer1.Panel2.ResumeLayout(false);
333      ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
334      this.splitContainer1.ResumeLayout(false);
335      this.gradientPanel.ResumeLayout(false);
336      ((System.ComponentModel.ISupportInitialize)(this.gradientPictureBox)).EndInit();
337      this.ResumeLayout(false);
338
339    }
340
341    #endregion
342
343    private HeuristicLab.Analysis.Views.ScatterPlotControl scatterPlotControl;
344    private System.Windows.Forms.GroupBox groupBox1;
345    private System.Windows.Forms.Label label2;
346    private System.Windows.Forms.Label label1;
347    private System.Windows.Forms.ComboBox comboBoxYVariable;
348    private System.Windows.Forms.ComboBox comboBoxXVariable;
349    private System.Windows.Forms.ComboBox comboBoxGroup;
350    private System.Windows.Forms.Label label3;
351    private System.Windows.Forms.GroupBox regressionGroupBox;
352    private System.Windows.Forms.ComboBox regressionTypeComboBox;
353    private System.Windows.Forms.NumericUpDown polynomialRegressionOrderNumericUpDown;
354    private System.Windows.Forms.Label orderLabel;
355    private System.Windows.Forms.Label label4;
356    private System.Windows.Forms.SplitContainer splitContainer1;
357    private System.Windows.Forms.CheckBox useGradientCheckBox;
358    private System.Windows.Forms.Panel gradientPanel;
359    private System.Windows.Forms.Label gradientMinimumLabel;
360    private System.Windows.Forms.Label gradientMaximumLabel;
361    protected System.Windows.Forms.PictureBox gradientPictureBox;
362  }
363}
Note: See TracBrowser for help on using the repository browser.