Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2520_PersistenceReintegration/HeuristicLab.DataPreprocessing.Views/3.4/ScatterPlotMultiView.Designer.cs @ 16453

Last change on this file since 16453 was 16453, checked in by jkarder, 5 years ago

#2520: updated year of copyrights

File size: 32.2 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2019 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 ScatterPlotMultiView {
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.frameTableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
48      this.columnHeaderScrollPanel = new System.Windows.Forms.Panel();
49      this.columnHeaderTableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
50      this.rowHeaderScrollPanel = new System.Windows.Forms.Panel();
51      this.rowHeaderTableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
52      this.bodyScrollPanel = new System.Windows.Forms.Panel();
53      this.bodyTableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
54      this.sizeGroupBox = new System.Windows.Forms.GroupBox();
55      this.heightNumericUpDown = new System.Windows.Forms.NumericUpDown();
56      this.widthNumericUpDown = new System.Windows.Forms.NumericUpDown();
57      this.heightLabel = new System.Windows.Forms.Label();
58      this.widthLabel = new System.Windows.Forms.Label();
59      this.lockAspectCheckBox = new System.Windows.Forms.CheckBox();
60      this.pointSizeNumericUpDown = new System.Windows.Forms.NumericUpDown();
61      this.pointSizeLabel = new System.Windows.Forms.Label();
62      this.regressionGroupBox = new System.Windows.Forms.GroupBox();
63      this.regressionTypeComboBox = new System.Windows.Forms.ComboBox();
64      this.polynomialRegressionOrderNumericUpDown = new System.Windows.Forms.NumericUpDown();
65      this.orderLabel = new System.Windows.Forms.Label();
66      this.regressionTyleLabel = new System.Windows.Forms.Label();
67      this.groupingOptionsBox = new System.Windows.Forms.GroupBox();
68      this.legendGroupBox = new System.Windows.Forms.GroupBox();
69      this.legendCheckbox = new System.Windows.Forms.CheckBox();
70      this.legendOrderComboBox = new System.Windows.Forms.ComboBox();
71      this.legendOrderLabel = new System.Windows.Forms.Label();
72      this.aggregationLabel = new System.Windows.Forms.Label();
73      this.aggregationComboBox = new System.Windows.Forms.ComboBox();
74      this.groupingComboBox = new System.Windows.Forms.ComboBox();
75      this.opacityLabel = new System.Windows.Forms.Label();
76      this.pointOpacityNumericUpDown = new System.Windows.Forms.NumericUpDown();
77      this.pointsGroupBox = new System.Windows.Forms.GroupBox();
78      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
79      this.splitContainer.Panel1.SuspendLayout();
80      this.splitContainer.Panel2.SuspendLayout();
81      this.splitContainer.SuspendLayout();
82      this.frameTableLayoutPanel.SuspendLayout();
83      this.columnHeaderScrollPanel.SuspendLayout();
84      this.rowHeaderScrollPanel.SuspendLayout();
85      this.bodyScrollPanel.SuspendLayout();
86      this.sizeGroupBox.SuspendLayout();
87      ((System.ComponentModel.ISupportInitialize)(this.heightNumericUpDown)).BeginInit();
88      ((System.ComponentModel.ISupportInitialize)(this.widthNumericUpDown)).BeginInit();
89      ((System.ComponentModel.ISupportInitialize)(this.pointSizeNumericUpDown)).BeginInit();
90      this.regressionGroupBox.SuspendLayout();
91      ((System.ComponentModel.ISupportInitialize)(this.polynomialRegressionOrderNumericUpDown)).BeginInit();
92      this.groupingOptionsBox.SuspendLayout();
93      this.legendGroupBox.SuspendLayout();
94      ((System.ComponentModel.ISupportInitialize)(this.pointOpacityNumericUpDown)).BeginInit();
95      this.pointsGroupBox.SuspendLayout();
96      this.SuspendLayout();
97      //
98      // splitContainer
99      //
100      //
101      // splitContainer.Panel1
102      //
103      this.splitContainer.Panel1.Controls.Add(this.sizeGroupBox);
104      this.splitContainer.Panel1.Controls.Add(this.pointsGroupBox);
105      this.splitContainer.Panel1.Controls.Add(this.groupingOptionsBox);
106      this.splitContainer.Panel1.Controls.Add(this.regressionGroupBox);
107      //
108      // splitContainer.Panel2
109      //
110      this.splitContainer.Panel2.Controls.Add(this.frameTableLayoutPanel);
111      this.splitContainer.Size = new System.Drawing.Size(589, 451);
112      //
113      // frameTableLayoutPanel
114      //
115      this.frameTableLayoutPanel.ColumnCount = 2;
116      this.frameTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 40F));
117      this.frameTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
118      this.frameTableLayoutPanel.Controls.Add(this.columnHeaderScrollPanel, 1, 0);
119      this.frameTableLayoutPanel.Controls.Add(this.rowHeaderScrollPanel, 0, 1);
120      this.frameTableLayoutPanel.Controls.Add(this.bodyScrollPanel, 1, 1);
121      this.frameTableLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill;
122      this.frameTableLayoutPanel.Location = new System.Drawing.Point(0, 0);
123      this.frameTableLayoutPanel.Name = "frameTableLayoutPanel";
124      this.frameTableLayoutPanel.RowCount = 2;
125      this.frameTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));
126      this.frameTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
127      this.frameTableLayoutPanel.Size = new System.Drawing.Size(405, 451);
128      this.frameTableLayoutPanel.TabIndex = 0;
129      //
130      // columnHeaderScrollPanel
131      //
132      this.columnHeaderScrollPanel.Controls.Add(this.columnHeaderTableLayoutPanel);
133      this.columnHeaderScrollPanel.Dock = System.Windows.Forms.DockStyle.Fill;
134      this.columnHeaderScrollPanel.Location = new System.Drawing.Point(40, 0);
135      this.columnHeaderScrollPanel.Margin = new System.Windows.Forms.Padding(0);
136      this.columnHeaderScrollPanel.Name = "columnHeaderScrollPanel";
137      this.columnHeaderScrollPanel.Size = new System.Drawing.Size(365, 40);
138      this.columnHeaderScrollPanel.TabIndex = 3;
139      //
140      // columnHeaderTableLayoutPanel
141      //
142      this.columnHeaderTableLayoutPanel.AutoSize = true;
143      this.columnHeaderTableLayoutPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
144      this.columnHeaderTableLayoutPanel.ColumnCount = 2;
145      this.columnHeaderTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
146      this.columnHeaderTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
147      this.columnHeaderTableLayoutPanel.Dock = System.Windows.Forms.DockStyle.Left;
148      this.columnHeaderTableLayoutPanel.Location = new System.Drawing.Point(0, 0);
149      this.columnHeaderTableLayoutPanel.Margin = new System.Windows.Forms.Padding(0);
150      this.columnHeaderTableLayoutPanel.Name = "columnHeaderTableLayoutPanel";
151      this.columnHeaderTableLayoutPanel.RowCount = 1;
152      this.columnHeaderTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
153      this.columnHeaderTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
154      this.columnHeaderTableLayoutPanel.Size = new System.Drawing.Size(0, 40);
155      this.columnHeaderTableLayoutPanel.TabIndex = 1;
156      //
157      // rowHeaderScrollPanel
158      //
159      this.rowHeaderScrollPanel.Controls.Add(this.rowHeaderTableLayoutPanel);
160      this.rowHeaderScrollPanel.Dock = System.Windows.Forms.DockStyle.Fill;
161      this.rowHeaderScrollPanel.Location = new System.Drawing.Point(0, 40);
162      this.rowHeaderScrollPanel.Margin = new System.Windows.Forms.Padding(0);
163      this.rowHeaderScrollPanel.Name = "rowHeaderScrollPanel";
164      this.rowHeaderScrollPanel.Size = new System.Drawing.Size(40, 411);
165      this.rowHeaderScrollPanel.TabIndex = 4;
166      //
167      // rowHeaderTableLayoutPanel
168      //
169      this.rowHeaderTableLayoutPanel.AutoSize = true;
170      this.rowHeaderTableLayoutPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
171      this.rowHeaderTableLayoutPanel.ColumnCount = 1;
172      this.rowHeaderTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
173      this.rowHeaderTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
174      this.rowHeaderTableLayoutPanel.Dock = System.Windows.Forms.DockStyle.Top;
175      this.rowHeaderTableLayoutPanel.Location = new System.Drawing.Point(0, 0);
176      this.rowHeaderTableLayoutPanel.Margin = new System.Windows.Forms.Padding(0);
177      this.rowHeaderTableLayoutPanel.Name = "rowHeaderTableLayoutPanel";
178      this.rowHeaderTableLayoutPanel.RowCount = 2;
179      this.rowHeaderTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
180      this.rowHeaderTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
181      this.rowHeaderTableLayoutPanel.Size = new System.Drawing.Size(40, 0);
182      this.rowHeaderTableLayoutPanel.TabIndex = 2;
183      //
184      // bodyScrollPanel
185      //
186      this.bodyScrollPanel.AutoScroll = true;
187      this.bodyScrollPanel.Controls.Add(this.bodyTableLayoutPanel);
188      this.bodyScrollPanel.Dock = System.Windows.Forms.DockStyle.Fill;
189      this.bodyScrollPanel.Location = new System.Drawing.Point(40, 40);
190      this.bodyScrollPanel.Margin = new System.Windows.Forms.Padding(0);
191      this.bodyScrollPanel.Name = "bodyScrollPanel";
192      this.bodyScrollPanel.Size = new System.Drawing.Size(365, 411);
193      this.bodyScrollPanel.TabIndex = 5;
194      this.bodyScrollPanel.Scroll += new System.Windows.Forms.ScrollEventHandler(this.bodyScrollPanel_Scroll);
195      //
196      // bodyTableLayoutPanel
197      //
198      this.bodyTableLayoutPanel.AutoSize = true;
199      this.bodyTableLayoutPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
200      this.bodyTableLayoutPanel.ColumnCount = 2;
201      this.bodyTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
202      this.bodyTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
203      this.bodyTableLayoutPanel.Location = new System.Drawing.Point(0, 0);
204      this.bodyTableLayoutPanel.Margin = new System.Windows.Forms.Padding(0);
205      this.bodyTableLayoutPanel.Name = "bodyTableLayoutPanel";
206      this.bodyTableLayoutPanel.RowCount = 2;
207      this.bodyTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
208      this.bodyTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
209      this.bodyTableLayoutPanel.Size = new System.Drawing.Size(0, 0);
210      this.bodyTableLayoutPanel.TabIndex = 0;
211      //
212      // sizeGroupBox
213      //
214      this.sizeGroupBox.Controls.Add(this.heightNumericUpDown);
215      this.sizeGroupBox.Controls.Add(this.widthNumericUpDown);
216      this.sizeGroupBox.Controls.Add(this.heightLabel);
217      this.sizeGroupBox.Controls.Add(this.widthLabel);
218      this.sizeGroupBox.Controls.Add(this.lockAspectCheckBox);
219      this.sizeGroupBox.Dock = System.Windows.Forms.DockStyle.Bottom;
220      this.sizeGroupBox.Location = new System.Drawing.Point(0, 78);
221      this.sizeGroupBox.Name = "sizeGroupBox";
222      this.sizeGroupBox.Size = new System.Drawing.Size(180, 98);
223      this.sizeGroupBox.TabIndex = 5;
224      this.sizeGroupBox.TabStop = false;
225      this.sizeGroupBox.Text = "Chart Size";
226      //
227      // heightNumericUpDown
228      //
229      this.heightNumericUpDown.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
230            | System.Windows.Forms.AnchorStyles.Right)));
231      this.heightNumericUpDown.Increment = new decimal(new int[] {
232            50,
233            0,
234            0,
235            0});
236      this.heightNumericUpDown.Location = new System.Drawing.Point(50, 46);
237      this.heightNumericUpDown.Maximum = new decimal(new int[] {
238            100000,
239            0,
240            0,
241            0});
242      this.heightNumericUpDown.Name = "heightNumericUpDown";
243      this.heightNumericUpDown.Size = new System.Drawing.Size(124, 20);
244      this.heightNumericUpDown.TabIndex = 4;
245      this.heightNumericUpDown.Value = new decimal(new int[] {
246            225,
247            0,
248            0,
249            0});
250      this.heightNumericUpDown.ValueChanged += new System.EventHandler(this.heightNumericUpDown_ValueChanged);
251      //
252      // widthNumericUpDown
253      //
254      this.widthNumericUpDown.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
255            | System.Windows.Forms.AnchorStyles.Right)));
256      this.widthNumericUpDown.Increment = new decimal(new int[] {
257            50,
258            0,
259            0,
260            0});
261      this.widthNumericUpDown.Location = new System.Drawing.Point(50, 20);
262      this.widthNumericUpDown.Maximum = new decimal(new int[] {
263            10000,
264            0,
265            0,
266            0});
267      this.widthNumericUpDown.Name = "widthNumericUpDown";
268      this.widthNumericUpDown.Size = new System.Drawing.Size(124, 20);
269      this.widthNumericUpDown.TabIndex = 3;
270      this.widthNumericUpDown.Value = new decimal(new int[] {
271            300,
272            0,
273            0,
274            0});
275      this.widthNumericUpDown.ValueChanged += new System.EventHandler(this.widthNumericUpDown_ValueChanged);
276      //
277      // heightLabel
278      //
279      this.heightLabel.AutoSize = true;
280      this.heightLabel.Location = new System.Drawing.Point(6, 48);
281      this.heightLabel.Name = "heightLabel";
282      this.heightLabel.Size = new System.Drawing.Size(41, 13);
283      this.heightLabel.TabIndex = 2;
284      this.heightLabel.Text = "Height:";
285      //
286      // widthLabel
287      //
288      this.widthLabel.AutoSize = true;
289      this.widthLabel.Location = new System.Drawing.Point(6, 22);
290      this.widthLabel.Name = "widthLabel";
291      this.widthLabel.Size = new System.Drawing.Size(38, 13);
292      this.widthLabel.TabIndex = 1;
293      this.widthLabel.Text = "Width:";
294      //
295      // lockAspectCheckBox
296      //
297      this.lockAspectCheckBox.AutoSize = true;
298      this.lockAspectCheckBox.Checked = true;
299      this.lockAspectCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
300      this.lockAspectCheckBox.Location = new System.Drawing.Point(50, 73);
301      this.lockAspectCheckBox.Name = "lockAspectCheckBox";
302      this.lockAspectCheckBox.Size = new System.Drawing.Size(114, 17);
303      this.lockAspectCheckBox.TabIndex = 6;
304      this.lockAspectCheckBox.Text = "Lock Aspect Ratio";
305      this.lockAspectCheckBox.UseVisualStyleBackColor = true;
306      //
307      // pointSizeNumericUpDown
308      //
309      this.pointSizeNumericUpDown.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
310            | System.Windows.Forms.AnchorStyles.Right)));
311      this.pointSizeNumericUpDown.Location = new System.Drawing.Point(58, 15);
312      this.pointSizeNumericUpDown.Maximum = new decimal(new int[] {
313            50,
314            0,
315            0,
316            0});
317      this.pointSizeNumericUpDown.Minimum = new decimal(new int[] {
318            1,
319            0,
320            0,
321            0});
322      this.pointSizeNumericUpDown.Name = "pointSizeNumericUpDown";
323      this.pointSizeNumericUpDown.Size = new System.Drawing.Size(116, 20);
324      this.pointSizeNumericUpDown.TabIndex = 8;
325      this.pointSizeNumericUpDown.Value = new decimal(new int[] {
326            3,
327            0,
328            0,
329            0});
330      this.pointSizeNumericUpDown.ValueChanged += new System.EventHandler(this.pointSizeNumericUpDown_ValueChanged);
331      //
332      // pointSizeLabel
333      //
334      this.pointSizeLabel.AutoSize = true;
335      this.pointSizeLabel.Location = new System.Drawing.Point(6, 17);
336      this.pointSizeLabel.Name = "pointSizeLabel";
337      this.pointSizeLabel.Size = new System.Drawing.Size(30, 13);
338      this.pointSizeLabel.TabIndex = 7;
339      this.pointSizeLabel.Text = "Size:";
340      //
341      // regressionGroupBox
342      //
343      this.regressionGroupBox.Controls.Add(this.regressionTypeComboBox);
344      this.regressionGroupBox.Controls.Add(this.polynomialRegressionOrderNumericUpDown);
345      this.regressionGroupBox.Controls.Add(this.orderLabel);
346      this.regressionGroupBox.Controls.Add(this.regressionTyleLabel);
347      this.regressionGroupBox.Dock = System.Windows.Forms.DockStyle.Bottom;
348      this.regressionGroupBox.Location = new System.Drawing.Point(0, 376);
349      this.regressionGroupBox.Name = "regressionGroupBox";
350      this.regressionGroupBox.Size = new System.Drawing.Size(180, 75);
351      this.regressionGroupBox.TabIndex = 3;
352      this.regressionGroupBox.TabStop = false;
353      this.regressionGroupBox.Text = "Regression";
354      //
355      // regressionTypeComboBox
356      //
357      this.regressionTypeComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
358            | System.Windows.Forms.AnchorStyles.Right)));
359      this.regressionTypeComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
360      this.regressionTypeComboBox.FormattingEnabled = true;
361      this.regressionTypeComboBox.Location = new System.Drawing.Point(67, 19);
362      this.regressionTypeComboBox.Name = "regressionTypeComboBox";
363      this.regressionTypeComboBox.Size = new System.Drawing.Size(107, 21);
364      this.regressionTypeComboBox.TabIndex = 14;
365      this.regressionTypeComboBox.SelectedValueChanged += new System.EventHandler(this.regressionTypeComboBox_SelectedValueChanged);
366      //
367      // polynomialRegressionOrderNumericUpDown
368      //
369      this.polynomialRegressionOrderNumericUpDown.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
370            | System.Windows.Forms.AnchorStyles.Right)));
371      this.polynomialRegressionOrderNumericUpDown.Location = new System.Drawing.Point(67, 45);
372      this.polynomialRegressionOrderNumericUpDown.Margin = new System.Windows.Forms.Padding(9, 3, 3, 3);
373      this.polynomialRegressionOrderNumericUpDown.Maximum = new decimal(new int[] {
374            6,
375            0,
376            0,
377            0});
378      this.polynomialRegressionOrderNumericUpDown.Minimum = new decimal(new int[] {
379            2,
380            0,
381            0,
382            0});
383      this.polynomialRegressionOrderNumericUpDown.Name = "polynomialRegressionOrderNumericUpDown";
384      this.polynomialRegressionOrderNumericUpDown.Size = new System.Drawing.Size(107, 20);
385      this.polynomialRegressionOrderNumericUpDown.TabIndex = 15;
386      this.polynomialRegressionOrderNumericUpDown.Value = new decimal(new int[] {
387            2,
388            0,
389            0,
390            0});
391      this.polynomialRegressionOrderNumericUpDown.ValueChanged += new System.EventHandler(this.polynomialRegressionOrderNumericUpDown_ValueChanged);
392      //
393      // orderLabel
394      //
395      this.orderLabel.AutoSize = true;
396      this.orderLabel.Location = new System.Drawing.Point(6, 47);
397      this.orderLabel.Name = "orderLabel";
398      this.orderLabel.Size = new System.Drawing.Size(36, 13);
399      this.orderLabel.TabIndex = 16;
400      this.orderLabel.Text = "Order:";
401      //
402      // regressionTyleLabel
403      //
404      this.regressionTyleLabel.AutoSize = true;
405      this.regressionTyleLabel.Location = new System.Drawing.Point(6, 22);
406      this.regressionTyleLabel.Name = "regressionTyleLabel";
407      this.regressionTyleLabel.Size = new System.Drawing.Size(34, 13);
408      this.regressionTyleLabel.TabIndex = 13;
409      this.regressionTyleLabel.Text = "Type:";
410      //
411      // groupingOptionsBox
412      //
413      this.groupingOptionsBox.Controls.Add(this.legendGroupBox);
414      this.groupingOptionsBox.Controls.Add(this.aggregationLabel);
415      this.groupingOptionsBox.Controls.Add(this.aggregationComboBox);
416      this.groupingOptionsBox.Controls.Add(this.groupingComboBox);
417      this.groupingOptionsBox.Dock = System.Windows.Forms.DockStyle.Bottom;
418      this.groupingOptionsBox.Location = new System.Drawing.Point(0, 245);
419      this.groupingOptionsBox.Name = "groupingOptionsBox";
420      this.groupingOptionsBox.Size = new System.Drawing.Size(180, 131);
421      this.groupingOptionsBox.TabIndex = 8;
422      this.groupingOptionsBox.TabStop = false;
423      this.groupingOptionsBox.Text = "Grouping";
424      //
425      // legendGroupBox
426      //
427      this.legendGroupBox.Controls.Add(this.legendCheckbox);
428      this.legendGroupBox.Controls.Add(this.legendOrderComboBox);
429      this.legendGroupBox.Controls.Add(this.legendOrderLabel);
430      this.legendGroupBox.Enabled = false;
431      this.legendGroupBox.Location = new System.Drawing.Point(6, 73);
432      this.legendGroupBox.Name = "legendGroupBox";
433      this.legendGroupBox.Size = new System.Drawing.Size(167, 50);
434      this.legendGroupBox.TabIndex = 7;
435      this.legendGroupBox.TabStop = false;
436      this.legendGroupBox.Text = "Legend";
437      //
438      // legendCheckbox
439      //
440      this.legendCheckbox.AutoSize = true;
441      this.legendCheckbox.Checked = true;
442      this.legendCheckbox.CheckState = System.Windows.Forms.CheckState.Checked;
443      this.legendCheckbox.Location = new System.Drawing.Point(56, -1);
444      this.legendCheckbox.Name = "legendCheckbox";
445      this.legendCheckbox.Size = new System.Drawing.Size(56, 17);
446      this.legendCheckbox.TabIndex = 0;
447      this.legendCheckbox.Text = "Visible";
448      this.legendCheckbox.UseVisualStyleBackColor = true;
449      this.legendCheckbox.CheckedChanged += new System.EventHandler(this.legendCheckbox_CheckedChanged);
450      //
451      // legendOrderComboBox
452      //
453      this.legendOrderComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
454      this.legendOrderComboBox.FormattingEnabled = true;
455      this.legendOrderComboBox.Location = new System.Drawing.Point(49, 19);
456      this.legendOrderComboBox.Name = "legendOrderComboBox";
457      this.legendOrderComboBox.Size = new System.Drawing.Size(109, 21);
458      this.legendOrderComboBox.TabIndex = 5;
459      this.legendOrderComboBox.SelectedIndexChanged += new System.EventHandler(this.legendOrderComboBox_SelectedIndexChanged);
460      //
461      // legendOrderLabel
462      //
463      this.legendOrderLabel.AutoSize = true;
464      this.legendOrderLabel.Location = new System.Drawing.Point(7, 22);
465      this.legendOrderLabel.Name = "legendOrderLabel";
466      this.legendOrderLabel.Size = new System.Drawing.Size(36, 13);
467      this.legendOrderLabel.TabIndex = 4;
468      this.legendOrderLabel.Text = "Order:";
469      this.legendOrderLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
470      //
471      // aggregationLabel
472      //
473      this.aggregationLabel.AutoSize = true;
474      this.aggregationLabel.Enabled = false;
475      this.aggregationLabel.Location = new System.Drawing.Point(5, 49);
476      this.aggregationLabel.Name = "aggregationLabel";
477      this.aggregationLabel.Size = new System.Drawing.Size(67, 13);
478      this.aggregationLabel.TabIndex = 3;
479      this.aggregationLabel.Text = "Aggregation:";
480      //
481      // aggregationComboBox
482      //
483      this.aggregationComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
484            | System.Windows.Forms.AnchorStyles.Right)));
485      this.aggregationComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
486      this.aggregationComboBox.Enabled = false;
487      this.aggregationComboBox.FormattingEnabled = true;
488      this.aggregationComboBox.Location = new System.Drawing.Point(79, 46);
489      this.aggregationComboBox.Name = "aggregationComboBox";
490      this.aggregationComboBox.Size = new System.Drawing.Size(96, 21);
491      this.aggregationComboBox.TabIndex = 2;
492      this.aggregationComboBox.SelectedIndexChanged += new System.EventHandler(this.aggregationComboBox_SelectedIndexChanged);
493      //
494      // groupingComboBox
495      //
496      this.groupingComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
497            | System.Windows.Forms.AnchorStyles.Right)));
498      this.groupingComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
499      this.groupingComboBox.FormattingEnabled = true;
500      this.groupingComboBox.Location = new System.Drawing.Point(6, 19);
501      this.groupingComboBox.Name = "groupingComboBox";
502      this.groupingComboBox.Size = new System.Drawing.Size(169, 21);
503      this.groupingComboBox.TabIndex = 1;
504      this.groupingComboBox.SelectedIndexChanged += new System.EventHandler(this.groupingComboBox_SelectedIndexChanged);
505      //
506      // opacityLabel
507      //
508      this.opacityLabel.AutoSize = true;
509      this.opacityLabel.Location = new System.Drawing.Point(6, 43);
510      this.opacityLabel.Name = "opacityLabel";
511      this.opacityLabel.Size = new System.Drawing.Size(46, 13);
512      this.opacityLabel.TabIndex = 7;
513      this.opacityLabel.Text = "Opacity:";
514      //
515      // pointOpacityNumericUpDown
516      //
517      this.pointOpacityNumericUpDown.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
518            | System.Windows.Forms.AnchorStyles.Right)));
519      this.pointOpacityNumericUpDown.DecimalPlaces = 2;
520      this.pointOpacityNumericUpDown.Increment = new decimal(new int[] {
521            1,
522            0,
523            0,
524            65536});
525      this.pointOpacityNumericUpDown.Location = new System.Drawing.Point(58, 41);
526      this.pointOpacityNumericUpDown.Maximum = new decimal(new int[] {
527            1,
528            0,
529            0,
530            0});
531      this.pointOpacityNumericUpDown.Name = "pointOpacityNumericUpDown";
532      this.pointOpacityNumericUpDown.Size = new System.Drawing.Size(115, 20);
533      this.pointOpacityNumericUpDown.TabIndex = 8;
534      this.pointOpacityNumericUpDown.Value = new decimal(new int[] {
535            1,
536            0,
537            0,
538            0});
539      this.pointOpacityNumericUpDown.ValueChanged += new System.EventHandler(this.pointOpacityNumericUpDown_ValueChanged);
540      //
541      // pointsGroupBox
542      //
543      this.pointsGroupBox.Controls.Add(this.pointOpacityNumericUpDown);
544      this.pointsGroupBox.Controls.Add(this.pointSizeLabel);
545      this.pointsGroupBox.Controls.Add(this.pointSizeNumericUpDown);
546      this.pointsGroupBox.Controls.Add(this.opacityLabel);
547      this.pointsGroupBox.Dock = System.Windows.Forms.DockStyle.Bottom;
548      this.pointsGroupBox.Location = new System.Drawing.Point(0, 176);
549      this.pointsGroupBox.Name = "pointsGroupBox";
550      this.pointsGroupBox.Size = new System.Drawing.Size(180, 69);
551      this.pointsGroupBox.TabIndex = 4;
552      this.pointsGroupBox.TabStop = false;
553      this.pointsGroupBox.Text = "Points";
554      //
555      // ScatterPlotMultiView
556      //
557      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
558      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
559      this.Name = "ScatterPlotMultiView";
560      this.Size = new System.Drawing.Size(589, 451);
561      this.splitContainer.Panel1.ResumeLayout(false);
562      this.splitContainer.Panel2.ResumeLayout(false);
563      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
564      this.splitContainer.ResumeLayout(false);
565      this.frameTableLayoutPanel.ResumeLayout(false);
566      this.columnHeaderScrollPanel.ResumeLayout(false);
567      this.columnHeaderScrollPanel.PerformLayout();
568      this.rowHeaderScrollPanel.ResumeLayout(false);
569      this.rowHeaderScrollPanel.PerformLayout();
570      this.bodyScrollPanel.ResumeLayout(false);
571      this.bodyScrollPanel.PerformLayout();
572      this.sizeGroupBox.ResumeLayout(false);
573      this.sizeGroupBox.PerformLayout();
574      ((System.ComponentModel.ISupportInitialize)(this.heightNumericUpDown)).EndInit();
575      ((System.ComponentModel.ISupportInitialize)(this.widthNumericUpDown)).EndInit();
576      ((System.ComponentModel.ISupportInitialize)(this.pointSizeNumericUpDown)).EndInit();
577      this.regressionGroupBox.ResumeLayout(false);
578      this.regressionGroupBox.PerformLayout();
579      ((System.ComponentModel.ISupportInitialize)(this.polynomialRegressionOrderNumericUpDown)).EndInit();
580      this.groupingOptionsBox.ResumeLayout(false);
581      this.groupingOptionsBox.PerformLayout();
582      this.legendGroupBox.ResumeLayout(false);
583      this.legendGroupBox.PerformLayout();
584      ((System.ComponentModel.ISupportInitialize)(this.pointOpacityNumericUpDown)).EndInit();
585      this.pointsGroupBox.ResumeLayout(false);
586      this.pointsGroupBox.PerformLayout();
587      this.ResumeLayout(false);
588
589    }
590
591    #endregion
592
593    private System.Windows.Forms.TableLayoutPanel frameTableLayoutPanel;
594    private System.Windows.Forms.TableLayoutPanel columnHeaderTableLayoutPanel;
595    private System.Windows.Forms.TableLayoutPanel rowHeaderTableLayoutPanel;
596    private System.Windows.Forms.TableLayoutPanel bodyTableLayoutPanel;
597    private System.Windows.Forms.Panel columnHeaderScrollPanel;
598    private System.Windows.Forms.Panel rowHeaderScrollPanel;
599    private System.Windows.Forms.Panel bodyScrollPanel;
600    private System.Windows.Forms.GroupBox sizeGroupBox;
601    private System.Windows.Forms.Label heightLabel;
602    private System.Windows.Forms.Label widthLabel;
603    private System.Windows.Forms.GroupBox regressionGroupBox;
604    private System.Windows.Forms.ComboBox regressionTypeComboBox;
605    private System.Windows.Forms.NumericUpDown polynomialRegressionOrderNumericUpDown;
606    private System.Windows.Forms.Label orderLabel;
607    private System.Windows.Forms.Label regressionTyleLabel;
608    private System.Windows.Forms.GroupBox groupingOptionsBox;
609    private System.Windows.Forms.ComboBox groupingComboBox;
610    private System.Windows.Forms.NumericUpDown widthNumericUpDown;
611    private System.Windows.Forms.NumericUpDown heightNumericUpDown;
612    private System.Windows.Forms.CheckBox lockAspectCheckBox;
613    private System.Windows.Forms.NumericUpDown pointSizeNumericUpDown;
614    private System.Windows.Forms.Label pointSizeLabel;
615    private System.Windows.Forms.Label aggregationLabel;
616    private System.Windows.Forms.ComboBox aggregationComboBox;
617    private System.Windows.Forms.GroupBox pointsGroupBox;
618    private System.Windows.Forms.NumericUpDown pointOpacityNumericUpDown;
619    private System.Windows.Forms.Label opacityLabel;
620    private System.Windows.Forms.Label legendOrderLabel;
621    private System.Windows.Forms.ComboBox legendOrderComboBox;
622    private System.Windows.Forms.GroupBox legendGroupBox;
623    private System.Windows.Forms.CheckBox legendCheckbox;
624  }
625}
Note: See TracBrowser for help on using the repository browser.