Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing Enhancements/HeuristicLab.DataPreprocessing.Views/3.4/ScatterPlotMultiView.Designer.cs @ 14975

Last change on this file since 14975 was 14975, checked in by pfleck, 7 years ago

#2709

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