Free cookie consent management tool by TermsFeed Policy Generator

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

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

#2379
Fixed zooming issues.
Added "no data available" label.

File size: 18.3 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 chartArea2 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
49      System.Windows.Forms.DataVisualization.Charting.Series series2 = 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      this.noDataLabel = new System.Windows.Forms.Label();
69      ((System.ComponentModel.ISupportInitialize)(this.chart)).BeginInit();
70      this.childrenGroupBox.SuspendLayout();
71      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
72      this.splitContainer.Panel1.SuspendLayout();
73      this.splitContainer.Panel2.SuspendLayout();
74      this.splitContainer.SuspendLayout();
75      ((System.ComponentModel.ISupportInitialize)(this.levelNumericUpDown)).BeginInit();
76      ((System.ComponentModel.ISupportInitialize)(this.sizeTrackBar)).BeginInit();
77      ((System.ComponentModel.ISupportInitialize)(this.yJitterTrackBar)).BeginInit();
78      ((System.ComponentModel.ISupportInitialize)(this.xJitterTrackBar)).BeginInit();
79      this.SuspendLayout();
80      //
81      // yLabel
82      //
83      this.yLabel.AutoSize = true;
84      this.yLabel.Location = new System.Drawing.Point(218, 6);
85      this.yLabel.Name = "yLabel";
86      this.yLabel.Size = new System.Drawing.Size(15, 13);
87      this.yLabel.TabIndex = 0;
88      this.yLabel.Text = "y:";
89      //
90      // xLabel
91      //
92      this.xLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
93      this.xLabel.AutoSize = true;
94      this.xLabel.Location = new System.Drawing.Point(700, 712);
95      this.xLabel.Name = "xLabel";
96      this.xLabel.Size = new System.Drawing.Size(15, 13);
97      this.xLabel.TabIndex = 2;
98      this.xLabel.Text = "x:";
99      //
100      // chart
101      //
102      this.chart.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
103            | System.Windows.Forms.AnchorStyles.Left)
104            | System.Windows.Forms.AnchorStyles.Right)));
105      chartArea2.Name = "ChartArea1";
106      this.chart.ChartAreas.Add(chartArea2);
107      this.chart.Location = new System.Drawing.Point(3, 3);
108      this.chart.Name = "chart";
109      series2.ChartArea = "ChartArea1";
110      series2.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Point;
111      series2.IsVisibleInLegend = false;
112      series2.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Circle;
113      series2.Name = "Bubbles";
114      series2.YValuesPerPoint = 2;
115      this.chart.Series.Add(series2);
116      this.chart.Size = new System.Drawing.Size(966, 668);
117      this.chart.TabIndex = 7;
118      this.chart.AxisViewChanged += new System.EventHandler<System.Windows.Forms.DataVisualization.Charting.ViewEventArgs>(this.chart_AxisViewChanged);
119      //
120      // yAxisComboBox
121      //
122      this.yAxisComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
123      this.yAxisComboBox.FormattingEnabled = true;
124      this.yAxisComboBox.Location = new System.Drawing.Point(239, 2);
125      this.yAxisComboBox.Name = "yAxisComboBox";
126      this.yAxisComboBox.Size = new System.Drawing.Size(263, 21);
127      this.yAxisComboBox.TabIndex = 8;
128      this.yAxisComboBox.SelectedValueChanged += new System.EventHandler(this.axisComboBox_SelectedValueChanged);
129      //
130      // xAxisComboBox
131      //
132      this.xAxisComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
133      this.xAxisComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
134      this.xAxisComboBox.FormattingEnabled = true;
135      this.xAxisComboBox.Location = new System.Drawing.Point(721, 709);
136      this.xAxisComboBox.Name = "xAxisComboBox";
137      this.xAxisComboBox.Size = new System.Drawing.Size(249, 21);
138      this.xAxisComboBox.TabIndex = 9;
139      this.xAxisComboBox.SelectedValueChanged += new System.EventHandler(this.axisComboBox_SelectedValueChanged);
140      //
141      // treeView
142      //
143      this.treeView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
144            | System.Windows.Forms.AnchorStyles.Left)
145            | System.Windows.Forms.AnchorStyles.Right)));
146      this.treeView.CheckBoxes = true;
147      this.treeView.Location = new System.Drawing.Point(6, 19);
148      this.treeView.Name = "treeView";
149      this.treeView.Size = new System.Drawing.Size(89, 643);
150      this.treeView.TabIndex = 10;
151      this.treeView.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.treeView_AfterCheck);
152      this.treeView.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView_AfterSelect);
153      //
154      // childrenGroupBox
155      //
156      this.childrenGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
157            | System.Windows.Forms.AnchorStyles.Left)
158            | System.Windows.Forms.AnchorStyles.Right)));
159      this.childrenGroupBox.Controls.Add(this.treeView);
160      this.childrenGroupBox.Location = new System.Drawing.Point(3, 3);
161      this.childrenGroupBox.Name = "childrenGroupBox";
162      this.childrenGroupBox.Size = new System.Drawing.Size(101, 668);
163      this.childrenGroupBox.TabIndex = 11;
164      this.childrenGroupBox.TabStop = false;
165      this.childrenGroupBox.Text = "Children";
166      //
167      // splitContainer
168      //
169      this.splitContainer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
170            | System.Windows.Forms.AnchorStyles.Left)
171            | System.Windows.Forms.AnchorStyles.Right)));
172      this.splitContainer.Location = new System.Drawing.Point(3, 30);
173      this.splitContainer.Name = "splitContainer";
174      //
175      // splitContainer.Panel1
176      //
177      this.splitContainer.Panel1.Controls.Add(this.childrenGroupBox);
178      //
179      // splitContainer.Panel2
180      //
181      this.splitContainer.Panel2.Controls.Add(this.noDataLabel);
182      this.splitContainer.Panel2.Controls.Add(this.chart);
183      this.splitContainer.Size = new System.Drawing.Size(1083, 674);
184      this.splitContainer.SplitterDistance = 107;
185      this.splitContainer.TabIndex = 12;
186      //
187      // sizeComboBox
188      //
189      this.sizeComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
190      this.sizeComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
191      this.sizeComboBox.FormattingEnabled = true;
192      this.sizeComboBox.Location = new System.Drawing.Point(728, 2);
193      this.sizeComboBox.Name = "sizeComboBox";
194      this.sizeComboBox.Size = new System.Drawing.Size(280, 21);
195      this.sizeComboBox.TabIndex = 13;
196      this.sizeComboBox.SelectedValueChanged += new System.EventHandler(this.axisComboBox_SelectedValueChanged);
197      //
198      // sizeLabel
199      //
200      this.sizeLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
201      this.sizeLabel.AutoSize = true;
202      this.sizeLabel.Location = new System.Drawing.Point(656, 5);
203      this.sizeLabel.Name = "sizeLabel";
204      this.sizeLabel.Size = new System.Drawing.Size(66, 13);
205      this.sizeLabel.TabIndex = 14;
206      this.sizeLabel.Text = "Bubble Size:";
207      //
208      // sourceLabel
209      //
210      this.sourceLabel.AutoSize = true;
211      this.sourceLabel.Location = new System.Drawing.Point(3, 6);
212      this.sourceLabel.Name = "sourceLabel";
213      this.sourceLabel.Size = new System.Drawing.Size(36, 13);
214      this.sourceLabel.TabIndex = 15;
215      this.sourceLabel.Text = "Level:";
216      //
217      // levelNumericUpDown
218      //
219      this.levelNumericUpDown.Location = new System.Drawing.Point(45, 4);
220      this.levelNumericUpDown.Name = "levelNumericUpDown";
221      this.levelNumericUpDown.Size = new System.Drawing.Size(43, 20);
222      this.levelNumericUpDown.TabIndex = 16;
223      this.levelNumericUpDown.ValueChanged += new System.EventHandler(this.levelNumericUpDown_ValueChanged);
224      //
225      // includeChildrenCheckBox
226      //
227      this.includeChildrenCheckBox.AutoSize = true;
228      this.includeChildrenCheckBox.Checked = true;
229      this.includeChildrenCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
230      this.includeChildrenCheckBox.Location = new System.Drawing.Point(94, 4);
231      this.includeChildrenCheckBox.Name = "includeChildrenCheckBox";
232      this.includeChildrenCheckBox.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
233      this.includeChildrenCheckBox.Size = new System.Drawing.Size(102, 17);
234      this.includeChildrenCheckBox.TabIndex = 17;
235      this.includeChildrenCheckBox.Text = "Include Children";
236      this.includeChildrenCheckBox.UseVisualStyleBackColor = true;
237      this.includeChildrenCheckBox.CheckedChanged += new System.EventHandler(this.includeChildrenCheckBox_CheckedChanged);
238      //
239      // sizeTrackBar
240      //
241      this.sizeTrackBar.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
242      this.sizeTrackBar.Location = new System.Drawing.Point(1019, 3);
243      this.sizeTrackBar.Maximum = 20;
244      this.sizeTrackBar.Minimum = -20;
245      this.sizeTrackBar.Name = "sizeTrackBar";
246      this.sizeTrackBar.Size = new System.Drawing.Size(64, 45);
247      this.sizeTrackBar.TabIndex = 18;
248      this.sizeTrackBar.TickFrequency = 20;
249      this.sizeTrackBar.TickStyle = System.Windows.Forms.TickStyle.TopLeft;
250      this.sizeTrackBar.ValueChanged += new System.EventHandler(this.sizeTrackBar_ValueChanged);
251      //
252      // yJitterLabel
253      //
254      this.yJitterLabel.AutoSize = true;
255      this.yJitterLabel.Location = new System.Drawing.Point(509, 6);
256      this.yJitterLabel.Name = "yJitterLabel";
257      this.yJitterLabel.Size = new System.Drawing.Size(32, 13);
258      this.yJitterLabel.TabIndex = 19;
259      this.yJitterLabel.Text = "Jitter:";
260      //
261      // xJitterLabel
262      //
263      this.xJitterLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
264      this.xJitterLabel.AutoSize = true;
265      this.xJitterLabel.Location = new System.Drawing.Point(977, 712);
266      this.xJitterLabel.Name = "xJitterLabel";
267      this.xJitterLabel.Size = new System.Drawing.Size(32, 13);
268      this.xJitterLabel.TabIndex = 20;
269      this.xJitterLabel.Text = "Jitter:";
270      //
271      // yJitterTrackBar
272      //
273      this.yJitterTrackBar.Enabled = false;
274      this.yJitterTrackBar.Location = new System.Drawing.Point(547, 2);
275      this.yJitterTrackBar.Maximum = 100;
276      this.yJitterTrackBar.Name = "yJitterTrackBar";
277      this.yJitterTrackBar.Size = new System.Drawing.Size(65, 45);
278      this.yJitterTrackBar.TabIndex = 21;
279      this.yJitterTrackBar.TickStyle = System.Windows.Forms.TickStyle.None;
280      this.yJitterTrackBar.ValueChanged += new System.EventHandler(this.jitterTrackBar_ValueChanged);
281      //
282      // xJitterTrackBar
283      //
284      this.xJitterTrackBar.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
285      this.xJitterTrackBar.Enabled = false;
286      this.xJitterTrackBar.Location = new System.Drawing.Point(1019, 707);
287      this.xJitterTrackBar.Maximum = 100;
288      this.xJitterTrackBar.Name = "xJitterTrackBar";
289      this.xJitterTrackBar.Size = new System.Drawing.Size(65, 45);
290      this.xJitterTrackBar.TabIndex = 22;
291      this.xJitterTrackBar.TickStyle = System.Windows.Forms.TickStyle.None;
292      this.xJitterTrackBar.ValueChanged += new System.EventHandler(this.jitterTrackBar_ValueChanged);
293      //
294      // noDataLabel
295      //
296      this.noDataLabel.Anchor = System.Windows.Forms.AnchorStyles.None;
297      this.noDataLabel.AutoSize = true;
298      this.noDataLabel.Location = new System.Drawing.Point(469, 323);
299      this.noDataLabel.Name = "noDataLabel";
300      this.noDataLabel.Size = new System.Drawing.Size(139, 13);
301      this.noDataLabel.TabIndex = 8;
302      this.noDataLabel.Text = "No data could be displayed.";
303      this.noDataLabel.Visible = false;
304      //
305      // BubbleChartView
306      //
307      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
308      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
309      this.BackColor = System.Drawing.SystemColors.Window;
310      this.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
311      this.Controls.Add(this.xJitterTrackBar);
312      this.Controls.Add(this.yJitterTrackBar);
313      this.Controls.Add(this.xJitterLabel);
314      this.Controls.Add(this.yJitterLabel);
315      this.Controls.Add(this.sizeTrackBar);
316      this.Controls.Add(this.includeChildrenCheckBox);
317      this.Controls.Add(this.levelNumericUpDown);
318      this.Controls.Add(this.sourceLabel);
319      this.Controls.Add(this.sizeLabel);
320      this.Controls.Add(this.sizeComboBox);
321      this.Controls.Add(this.splitContainer);
322      this.Controls.Add(this.xAxisComboBox);
323      this.Controls.Add(this.xLabel);
324      this.Controls.Add(this.yLabel);
325      this.Controls.Add(this.yAxisComboBox);
326      this.Name = "BubbleChartView";
327      this.Size = new System.Drawing.Size(1089, 734);
328      ((System.ComponentModel.ISupportInitialize)(this.chart)).EndInit();
329      this.childrenGroupBox.ResumeLayout(false);
330      this.splitContainer.Panel1.ResumeLayout(false);
331      this.splitContainer.Panel2.ResumeLayout(false);
332      this.splitContainer.Panel2.PerformLayout();
333      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
334      this.splitContainer.ResumeLayout(false);
335      ((System.ComponentModel.ISupportInitialize)(this.levelNumericUpDown)).EndInit();
336      ((System.ComponentModel.ISupportInitialize)(this.sizeTrackBar)).EndInit();
337      ((System.ComponentModel.ISupportInitialize)(this.yJitterTrackBar)).EndInit();
338      ((System.ComponentModel.ISupportInitialize)(this.xJitterTrackBar)).EndInit();
339      this.ResumeLayout(false);
340      this.PerformLayout();
341
342    }
343
344    #endregion
345
346    private System.Windows.Forms.Label yLabel;
347    private System.Windows.Forms.Label xLabel;
348    private HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart chart;
349    private System.Windows.Forms.ComboBox yAxisComboBox;
350    private System.Windows.Forms.ComboBox xAxisComboBox;
351    private System.Windows.Forms.TreeView treeView;
352    private System.Windows.Forms.GroupBox childrenGroupBox;
353    private System.Windows.Forms.SplitContainer splitContainer;
354    private System.Windows.Forms.ComboBox sizeComboBox;
355    private System.Windows.Forms.Label sizeLabel;
356    private System.Windows.Forms.Label sourceLabel;
357    private System.Windows.Forms.NumericUpDown levelNumericUpDown;
358    private System.Windows.Forms.CheckBox includeChildrenCheckBox;
359    private System.Windows.Forms.TrackBar sizeTrackBar;
360    private System.Windows.Forms.Label yJitterLabel;
361    private System.Windows.Forms.Label xJitterLabel;
362    private System.Windows.Forms.TrackBar yJitterTrackBar;
363    private System.Windows.Forms.TrackBar xJitterTrackBar;
364    private System.Windows.Forms.Label noDataLabel;
365  }
366}
Note: See TracBrowser for help on using the repository browser.