Free cookie consent management tool by TermsFeed Policy Generator

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

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

#2379
Added tooltip when hovering a data point.
Click on a data point opens the corresponding DataItem or both if x and y values came from different DataItems.

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