Free cookie consent management tool by TermsFeed Policy Generator

source: branches/BubbleChart/HeuristicLab.Optimization.BubbleChart/3.3/BubbleChartView.Designer.cs @ 12881

Last change on this file since 12881 was 12881, checked in by pfleck, 9 years ago

#2379 Added jitter for x and y axis.

File size: 17.6 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2015 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.Optimization.BubbleChart {
23  partial class BubbleChartView {
24    /// <summary>
25    /// Required designer variable.
26    /// </summary>
27    private System.ComponentModel.IContainer components = null;
28
29    /// <summary>
30    /// Clean up any resources being used.
31    /// </summary>
32    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
33    protected override void Dispose(bool disposing) {
34      if (disposing && (components != null)) {
35        components.Dispose();
36      }
37      base.Dispose(disposing);
38    }
39
40    #region Component Designer generated code
41
42    /// <summary>
43    /// Required method for Designer support - do not modify
44    /// the contents of this method with the code editor.
45    /// </summary>
46    private void InitializeComponent() {
47      this.components = new System.ComponentModel.Container();
48      System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
49      System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
50      this.yLabel = new System.Windows.Forms.Label();
51      this.xLabel = new System.Windows.Forms.Label();
52      this.chart = new HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart();
53      this.yAxisComboBox = new System.Windows.Forms.ComboBox();
54      this.xAxisComboBox = new System.Windows.Forms.ComboBox();
55      this.treeView = new System.Windows.Forms.TreeView();
56      this.childrenGroupBox = new System.Windows.Forms.GroupBox();
57      this.splitContainer = new System.Windows.Forms.SplitContainer();
58      this.sizeComboBox = new System.Windows.Forms.ComboBox();
59      this.sizeLabel = new System.Windows.Forms.Label();
60      this.sourceLabel = new System.Windows.Forms.Label();
61      this.levelNumericUpDown = new System.Windows.Forms.NumericUpDown();
62      this.includeChildrenCheckBox = new System.Windows.Forms.CheckBox();
63      this.sizeTrackBar = new System.Windows.Forms.TrackBar();
64      this.yJitterLabel = new System.Windows.Forms.Label();
65      this.xJitterLabel = new System.Windows.Forms.Label();
66      this.yJitterTrackBar = new System.Windows.Forms.TrackBar();
67      this.xJitterTrackBar = new System.Windows.Forms.TrackBar();
68      ((System.ComponentModel.ISupportInitialize)(this.chart)).BeginInit();
69      this.childrenGroupBox.SuspendLayout();
70      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
71      this.splitContainer.Panel1.SuspendLayout();
72      this.splitContainer.Panel2.SuspendLayout();
73      this.splitContainer.SuspendLayout();
74      ((System.ComponentModel.ISupportInitialize)(this.levelNumericUpDown)).BeginInit();
75      ((System.ComponentModel.ISupportInitialize)(this.sizeTrackBar)).BeginInit();
76      ((System.ComponentModel.ISupportInitialize)(this.yJitterTrackBar)).BeginInit();
77      ((System.ComponentModel.ISupportInitialize)(this.xJitterTrackBar)).BeginInit();
78      this.SuspendLayout();
79      //
80      // yLabel
81      //
82      this.yLabel.AutoSize = true;
83      this.yLabel.Location = new System.Drawing.Point(218, 6);
84      this.yLabel.Name = "yLabel";
85      this.yLabel.Size = new System.Drawing.Size(15, 13);
86      this.yLabel.TabIndex = 0;
87      this.yLabel.Text = "y:";
88      //
89      // xLabel
90      //
91      this.xLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
92      this.xLabel.AutoSize = true;
93      this.xLabel.Location = new System.Drawing.Point(700, 712);
94      this.xLabel.Name = "xLabel";
95      this.xLabel.Size = new System.Drawing.Size(15, 13);
96      this.xLabel.TabIndex = 2;
97      this.xLabel.Text = "x:";
98      //
99      // chart
100      //
101      this.chart.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
102            | System.Windows.Forms.AnchorStyles.Left)
103            | System.Windows.Forms.AnchorStyles.Right)));
104      chartArea1.Name = "ChartArea1";
105      this.chart.ChartAreas.Add(chartArea1);
106      this.chart.Location = new System.Drawing.Point(3, 3);
107      this.chart.Name = "chart";
108      series1.ChartArea = "ChartArea1";
109      series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Point;
110      series1.IsVisibleInLegend = false;
111      series1.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Circle;
112      series1.Name = "Bubbles";
113      series1.YValuesPerPoint = 2;
114      this.chart.Series.Add(series1);
115      this.chart.Size = new System.Drawing.Size(966, 668);
116      this.chart.TabIndex = 7;
117      this.chart.AxisViewChanged += new System.EventHandler<System.Windows.Forms.DataVisualization.Charting.ViewEventArgs>(this.chart_AxisViewChanged);
118      //
119      // yAxisComboBox
120      //
121      this.yAxisComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
122      this.yAxisComboBox.FormattingEnabled = true;
123      this.yAxisComboBox.Location = new System.Drawing.Point(239, 2);
124      this.yAxisComboBox.Name = "yAxisComboBox";
125      this.yAxisComboBox.Size = new System.Drawing.Size(263, 21);
126      this.yAxisComboBox.TabIndex = 8;
127      this.yAxisComboBox.SelectedValueChanged += new System.EventHandler(this.axisComboBox_SelectedValueChanged);
128      //
129      // xAxisComboBox
130      //
131      this.xAxisComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
132      this.xAxisComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
133      this.xAxisComboBox.FormattingEnabled = true;
134      this.xAxisComboBox.Location = new System.Drawing.Point(721, 709);
135      this.xAxisComboBox.Name = "xAxisComboBox";
136      this.xAxisComboBox.Size = new System.Drawing.Size(249, 21);
137      this.xAxisComboBox.TabIndex = 9;
138      this.xAxisComboBox.SelectedValueChanged += new System.EventHandler(this.axisComboBox_SelectedValueChanged);
139      //
140      // treeView
141      //
142      this.treeView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
143            | System.Windows.Forms.AnchorStyles.Left)
144            | System.Windows.Forms.AnchorStyles.Right)));
145      this.treeView.CheckBoxes = true;
146      this.treeView.Location = new System.Drawing.Point(6, 19);
147      this.treeView.Name = "treeView";
148      this.treeView.Size = new System.Drawing.Size(89, 643);
149      this.treeView.TabIndex = 10;
150      this.treeView.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.treeView_AfterCheck);
151      this.treeView.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView_AfterSelect);
152      //
153      // childrenGroupBox
154      //
155      this.childrenGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
156            | System.Windows.Forms.AnchorStyles.Left)
157            | System.Windows.Forms.AnchorStyles.Right)));
158      this.childrenGroupBox.Controls.Add(this.treeView);
159      this.childrenGroupBox.Location = new System.Drawing.Point(3, 3);
160      this.childrenGroupBox.Name = "childrenGroupBox";
161      this.childrenGroupBox.Size = new System.Drawing.Size(101, 668);
162      this.childrenGroupBox.TabIndex = 11;
163      this.childrenGroupBox.TabStop = false;
164      this.childrenGroupBox.Text = "Children";
165      //
166      // splitContainer
167      //
168      this.splitContainer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
169            | System.Windows.Forms.AnchorStyles.Left)
170            | System.Windows.Forms.AnchorStyles.Right)));
171      this.splitContainer.Location = new System.Drawing.Point(3, 30);
172      this.splitContainer.Name = "splitContainer";
173      //
174      // splitContainer.Panel1
175      //
176      this.splitContainer.Panel1.Controls.Add(this.childrenGroupBox);
177      //
178      // splitContainer.Panel2
179      //
180      this.splitContainer.Panel2.Controls.Add(this.chart);
181      this.splitContainer.Size = new System.Drawing.Size(1083, 674);
182      this.splitContainer.SplitterDistance = 107;
183      this.splitContainer.TabIndex = 12;
184      //
185      // sizeComboBox
186      //
187      this.sizeComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
188      this.sizeComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
189      this.sizeComboBox.FormattingEnabled = true;
190      this.sizeComboBox.Location = new System.Drawing.Point(728, 2);
191      this.sizeComboBox.Name = "sizeComboBox";
192      this.sizeComboBox.Size = new System.Drawing.Size(280, 21);
193      this.sizeComboBox.TabIndex = 13;
194      this.sizeComboBox.SelectedValueChanged += new System.EventHandler(this.axisComboBox_SelectedValueChanged);
195      //
196      // sizeLabel
197      //
198      this.sizeLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
199      this.sizeLabel.AutoSize = true;
200      this.sizeLabel.Location = new System.Drawing.Point(656, 5);
201      this.sizeLabel.Name = "sizeLabel";
202      this.sizeLabel.Size = new System.Drawing.Size(66, 13);
203      this.sizeLabel.TabIndex = 14;
204      this.sizeLabel.Text = "Bubble Size:";
205      //
206      // sourceLabel
207      //
208      this.sourceLabel.AutoSize = true;
209      this.sourceLabel.Location = new System.Drawing.Point(3, 6);
210      this.sourceLabel.Name = "sourceLabel";
211      this.sourceLabel.Size = new System.Drawing.Size(36, 13);
212      this.sourceLabel.TabIndex = 15;
213      this.sourceLabel.Text = "Level:";
214      //
215      // levelNumericUpDown
216      //
217      this.levelNumericUpDown.Location = new System.Drawing.Point(45, 4);
218      this.levelNumericUpDown.Name = "levelNumericUpDown";
219      this.levelNumericUpDown.Size = new System.Drawing.Size(43, 20);
220      this.levelNumericUpDown.TabIndex = 16;
221      this.levelNumericUpDown.ValueChanged += new System.EventHandler(this.levelNumericUpDown_ValueChanged);
222      //
223      // includeChildrenCheckBox
224      //
225      this.includeChildrenCheckBox.AutoSize = true;
226      this.includeChildrenCheckBox.Checked = true;
227      this.includeChildrenCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
228      this.includeChildrenCheckBox.Location = new System.Drawing.Point(94, 4);
229      this.includeChildrenCheckBox.Name = "includeChildrenCheckBox";
230      this.includeChildrenCheckBox.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
231      this.includeChildrenCheckBox.Size = new System.Drawing.Size(102, 17);
232      this.includeChildrenCheckBox.TabIndex = 17;
233      this.includeChildrenCheckBox.Text = "Include Children";
234      this.includeChildrenCheckBox.UseVisualStyleBackColor = true;
235      this.includeChildrenCheckBox.CheckedChanged += new System.EventHandler(this.includeChildrenCheckBox_CheckedChanged);
236      //
237      // sizeTrackBar
238      //
239      this.sizeTrackBar.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
240      this.sizeTrackBar.Location = new System.Drawing.Point(1019, 3);
241      this.sizeTrackBar.Maximum = 20;
242      this.sizeTrackBar.Minimum = -20;
243      this.sizeTrackBar.Name = "sizeTrackBar";
244      this.sizeTrackBar.Size = new System.Drawing.Size(64, 45);
245      this.sizeTrackBar.TabIndex = 18;
246      this.sizeTrackBar.TickFrequency = 20;
247      this.sizeTrackBar.TickStyle = System.Windows.Forms.TickStyle.TopLeft;
248      this.sizeTrackBar.ValueChanged += new System.EventHandler(this.sizeTrackBar_ValueChanged);
249      //
250      // yJitterLabel
251      //
252      this.yJitterLabel.AutoSize = true;
253      this.yJitterLabel.Location = new System.Drawing.Point(509, 6);
254      this.yJitterLabel.Name = "yJitterLabel";
255      this.yJitterLabel.Size = new System.Drawing.Size(32, 13);
256      this.yJitterLabel.TabIndex = 19;
257      this.yJitterLabel.Text = "Jitter:";
258      //
259      // xJitterLabel
260      //
261      this.xJitterLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
262      this.xJitterLabel.AutoSize = true;
263      this.xJitterLabel.Location = new System.Drawing.Point(977, 712);
264      this.xJitterLabel.Name = "xJitterLabel";
265      this.xJitterLabel.Size = new System.Drawing.Size(32, 13);
266      this.xJitterLabel.TabIndex = 20;
267      this.xJitterLabel.Text = "Jitter:";
268      //
269      // yJitterTrackBar
270      //
271      this.yJitterTrackBar.Enabled = false;
272      this.yJitterTrackBar.Location = new System.Drawing.Point(547, 2);
273      this.yJitterTrackBar.Maximum = 100;
274      this.yJitterTrackBar.Name = "yJitterTrackBar";
275      this.yJitterTrackBar.Size = new System.Drawing.Size(65, 45);
276      this.yJitterTrackBar.TabIndex = 21;
277      this.yJitterTrackBar.TickStyle = System.Windows.Forms.TickStyle.None;
278      this.yJitterTrackBar.ValueChanged += new System.EventHandler(this.jitterTrackBar_ValueChanged);
279      //
280      // xJitterTrackBar
281      //
282      this.xJitterTrackBar.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
283      this.xJitterTrackBar.Enabled = false;
284      this.xJitterTrackBar.Location = new System.Drawing.Point(1019, 707);
285      this.xJitterTrackBar.Maximum = 100;
286      this.xJitterTrackBar.Name = "xJitterTrackBar";
287      this.xJitterTrackBar.Size = new System.Drawing.Size(65, 45);
288      this.xJitterTrackBar.TabIndex = 22;
289      this.xJitterTrackBar.TickStyle = System.Windows.Forms.TickStyle.None;
290      this.xJitterTrackBar.ValueChanged += new System.EventHandler(this.jitterTrackBar_ValueChanged);
291      //
292      // BubbleChartView
293      //
294      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
295      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
296      this.BackColor = System.Drawing.SystemColors.Window;
297      this.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
298      this.Controls.Add(this.xJitterTrackBar);
299      this.Controls.Add(this.yJitterTrackBar);
300      this.Controls.Add(this.xJitterLabel);
301      this.Controls.Add(this.yJitterLabel);
302      this.Controls.Add(this.sizeTrackBar);
303      this.Controls.Add(this.includeChildrenCheckBox);
304      this.Controls.Add(this.levelNumericUpDown);
305      this.Controls.Add(this.sourceLabel);
306      this.Controls.Add(this.sizeLabel);
307      this.Controls.Add(this.sizeComboBox);
308      this.Controls.Add(this.splitContainer);
309      this.Controls.Add(this.xAxisComboBox);
310      this.Controls.Add(this.xLabel);
311      this.Controls.Add(this.yLabel);
312      this.Controls.Add(this.yAxisComboBox);
313      this.Name = "BubbleChartView";
314      this.Size = new System.Drawing.Size(1089, 734);
315      ((System.ComponentModel.ISupportInitialize)(this.chart)).EndInit();
316      this.childrenGroupBox.ResumeLayout(false);
317      this.splitContainer.Panel1.ResumeLayout(false);
318      this.splitContainer.Panel2.ResumeLayout(false);
319      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
320      this.splitContainer.ResumeLayout(false);
321      ((System.ComponentModel.ISupportInitialize)(this.levelNumericUpDown)).EndInit();
322      ((System.ComponentModel.ISupportInitialize)(this.sizeTrackBar)).EndInit();
323      ((System.ComponentModel.ISupportInitialize)(this.yJitterTrackBar)).EndInit();
324      ((System.ComponentModel.ISupportInitialize)(this.xJitterTrackBar)).EndInit();
325      this.ResumeLayout(false);
326      this.PerformLayout();
327
328    }
329
330    #endregion
331
332    private System.Windows.Forms.Label yLabel;
333    private System.Windows.Forms.Label xLabel;
334    private HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart chart;
335    private System.Windows.Forms.ComboBox yAxisComboBox;
336    private System.Windows.Forms.ComboBox xAxisComboBox;
337    private System.Windows.Forms.TreeView treeView;
338    private System.Windows.Forms.GroupBox childrenGroupBox;
339    private System.Windows.Forms.SplitContainer splitContainer;
340    private System.Windows.Forms.ComboBox sizeComboBox;
341    private System.Windows.Forms.Label sizeLabel;
342    private System.Windows.Forms.Label sourceLabel;
343    private System.Windows.Forms.NumericUpDown levelNumericUpDown;
344    private System.Windows.Forms.CheckBox includeChildrenCheckBox;
345    private System.Windows.Forms.TrackBar sizeTrackBar;
346    private System.Windows.Forms.Label yJitterLabel;
347    private System.Windows.Forms.Label xJitterLabel;
348    private System.Windows.Forms.TrackBar yJitterTrackBar;
349    private System.Windows.Forms.TrackBar xJitterTrackBar;
350  }
351}
Note: See TracBrowser for help on using the repository browser.