Free cookie consent management tool by TermsFeed Policy Generator

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

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

#2379 Added size track-bar similar to the original bubble-chart.

File size: 14.5 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      ((System.ComponentModel.ISupportInitialize)(this.chart)).BeginInit();
65      this.childrenGroupBox.SuspendLayout();
66      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
67      this.splitContainer.Panel1.SuspendLayout();
68      this.splitContainer.Panel2.SuspendLayout();
69      this.splitContainer.SuspendLayout();
70      ((System.ComponentModel.ISupportInitialize)(this.levelNumericUpDown)).BeginInit();
71      ((System.ComponentModel.ISupportInitialize)(this.sizeTrackBar)).BeginInit();
72      this.SuspendLayout();
73      //
74      // yLabel
75      //
76      this.yLabel.AutoSize = true;
77      this.yLabel.Location = new System.Drawing.Point(218, 6);
78      this.yLabel.Name = "yLabel";
79      this.yLabel.Size = new System.Drawing.Size(15, 13);
80      this.yLabel.TabIndex = 0;
81      this.yLabel.Text = "y:";
82      //
83      // xLabel
84      //
85      this.xLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
86      this.xLabel.AutoSize = true;
87      this.xLabel.Location = new System.Drawing.Point(725, 713);
88      this.xLabel.Name = "xLabel";
89      this.xLabel.Size = new System.Drawing.Size(15, 13);
90      this.xLabel.TabIndex = 2;
91      this.xLabel.Text = "x:";
92      //
93      // chart
94      //
95      this.chart.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
96            | System.Windows.Forms.AnchorStyles.Left)
97            | System.Windows.Forms.AnchorStyles.Right)));
98      chartArea1.Name = "ChartArea1";
99      this.chart.ChartAreas.Add(chartArea1);
100      this.chart.Location = new System.Drawing.Point(3, 3);
101      this.chart.Name = "chart";
102      series1.ChartArea = "ChartArea1";
103      series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Point;
104      series1.IsVisibleInLegend = false;
105      series1.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Circle;
106      series1.Name = "Bubbles";
107      series1.YValuesPerPoint = 2;
108      this.chart.Series.Add(series1);
109      this.chart.Size = new System.Drawing.Size(965, 668);
110      this.chart.TabIndex = 7;
111      this.chart.AxisViewChanged += new System.EventHandler<System.Windows.Forms.DataVisualization.Charting.ViewEventArgs>(this.chart_AxisViewChanged);
112      //
113      // yAxisComboBox
114      //
115      this.yAxisComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
116      this.yAxisComboBox.FormattingEnabled = true;
117      this.yAxisComboBox.Location = new System.Drawing.Point(239, 2);
118      this.yAxisComboBox.Name = "yAxisComboBox";
119      this.yAxisComboBox.Size = new System.Drawing.Size(340, 21);
120      this.yAxisComboBox.TabIndex = 8;
121      this.yAxisComboBox.SelectedValueChanged += new System.EventHandler(this.axisComboBox_SelectedValueChanged);
122      //
123      // xAxisComboBox
124      //
125      this.xAxisComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
126      this.xAxisComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
127      this.xAxisComboBox.FormattingEnabled = true;
128      this.xAxisComboBox.Location = new System.Drawing.Point(746, 710);
129      this.xAxisComboBox.Name = "xAxisComboBox";
130      this.xAxisComboBox.Size = new System.Drawing.Size(340, 21);
131      this.xAxisComboBox.TabIndex = 9;
132      this.xAxisComboBox.SelectedValueChanged += new System.EventHandler(this.axisComboBox_SelectedValueChanged);
133      //
134      // treeView
135      //
136      this.treeView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
137            | System.Windows.Forms.AnchorStyles.Left)
138            | System.Windows.Forms.AnchorStyles.Right)));
139      this.treeView.CheckBoxes = true;
140      this.treeView.Location = new System.Drawing.Point(6, 19);
141      this.treeView.Name = "treeView";
142      this.treeView.Size = new System.Drawing.Size(90, 643);
143      this.treeView.TabIndex = 10;
144      this.treeView.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.treeView_AfterCheck);
145      this.treeView.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView_AfterSelect);
146      //
147      // childrenGroupBox
148      //
149      this.childrenGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
150            | System.Windows.Forms.AnchorStyles.Left)
151            | System.Windows.Forms.AnchorStyles.Right)));
152      this.childrenGroupBox.Controls.Add(this.treeView);
153      this.childrenGroupBox.Location = new System.Drawing.Point(3, 3);
154      this.childrenGroupBox.Name = "childrenGroupBox";
155      this.childrenGroupBox.Size = new System.Drawing.Size(102, 668);
156      this.childrenGroupBox.TabIndex = 11;
157      this.childrenGroupBox.TabStop = false;
158      this.childrenGroupBox.Text = "Children";
159      //
160      // splitContainer
161      //
162      this.splitContainer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
163            | System.Windows.Forms.AnchorStyles.Left)
164            | System.Windows.Forms.AnchorStyles.Right)));
165      this.splitContainer.Location = new System.Drawing.Point(3, 30);
166      this.splitContainer.Name = "splitContainer";
167      //
168      // splitContainer.Panel1
169      //
170      this.splitContainer.Panel1.Controls.Add(this.childrenGroupBox);
171      //
172      // splitContainer.Panel2
173      //
174      this.splitContainer.Panel2.Controls.Add(this.chart);
175      this.splitContainer.Size = new System.Drawing.Size(1083, 674);
176      this.splitContainer.SplitterDistance = 108;
177      this.splitContainer.TabIndex = 12;
178      //
179      // sizeComboBox
180      //
181      this.sizeComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
182      this.sizeComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
183      this.sizeComboBox.FormattingEnabled = true;
184      this.sizeComboBox.Location = new System.Drawing.Point(728, 2);
185      this.sizeComboBox.Name = "sizeComboBox";
186      this.sizeComboBox.Size = new System.Drawing.Size(280, 21);
187      this.sizeComboBox.TabIndex = 13;
188      this.sizeComboBox.SelectedValueChanged += new System.EventHandler(this.axisComboBox_SelectedValueChanged);
189      //
190      // sizeLabel
191      //
192      this.sizeLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
193      this.sizeLabel.AutoSize = true;
194      this.sizeLabel.Location = new System.Drawing.Point(656, 5);
195      this.sizeLabel.Name = "sizeLabel";
196      this.sizeLabel.Size = new System.Drawing.Size(66, 13);
197      this.sizeLabel.TabIndex = 14;
198      this.sizeLabel.Text = "Bubble Size:";
199      //
200      // sourceLabel
201      //
202      this.sourceLabel.AutoSize = true;
203      this.sourceLabel.Location = new System.Drawing.Point(3, 6);
204      this.sourceLabel.Name = "sourceLabel";
205      this.sourceLabel.Size = new System.Drawing.Size(36, 13);
206      this.sourceLabel.TabIndex = 15;
207      this.sourceLabel.Text = "Level:";
208      //
209      // levelNumericUpDown
210      //
211      this.levelNumericUpDown.Location = new System.Drawing.Point(45, 4);
212      this.levelNumericUpDown.Name = "levelNumericUpDown";
213      this.levelNumericUpDown.Size = new System.Drawing.Size(43, 20);
214      this.levelNumericUpDown.TabIndex = 16;
215      this.levelNumericUpDown.ValueChanged += new System.EventHandler(this.levelNumericUpDown_ValueChanged);
216      //
217      // includeChildrenCheckBox
218      //
219      this.includeChildrenCheckBox.AutoSize = true;
220      this.includeChildrenCheckBox.Checked = true;
221      this.includeChildrenCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
222      this.includeChildrenCheckBox.Location = new System.Drawing.Point(94, 4);
223      this.includeChildrenCheckBox.Name = "includeChildrenCheckBox";
224      this.includeChildrenCheckBox.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
225      this.includeChildrenCheckBox.Size = new System.Drawing.Size(102, 17);
226      this.includeChildrenCheckBox.TabIndex = 17;
227      this.includeChildrenCheckBox.Text = "Include Children";
228      this.includeChildrenCheckBox.UseVisualStyleBackColor = true;
229      this.includeChildrenCheckBox.CheckedChanged += new System.EventHandler(this.includeChildrenCheckBox_CheckedChanged);
230      //
231      // sizeTrackBar
232      //
233      this.sizeTrackBar.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
234      this.sizeTrackBar.Location = new System.Drawing.Point(1019, 3);
235      this.sizeTrackBar.Maximum = 20;
236      this.sizeTrackBar.Minimum = -20;
237      this.sizeTrackBar.Name = "sizeTrackBar";
238      this.sizeTrackBar.Size = new System.Drawing.Size(64, 45);
239      this.sizeTrackBar.TabIndex = 18;
240      this.sizeTrackBar.TickFrequency = 20;
241      this.sizeTrackBar.TickStyle = System.Windows.Forms.TickStyle.TopLeft;
242      this.sizeTrackBar.ValueChanged += new System.EventHandler(this.sizeTrackBar_ValueChanged);
243      //
244      // BubbleChartView
245      //
246      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
247      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
248      this.BackColor = System.Drawing.SystemColors.Window;
249      this.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
250      this.Controls.Add(this.sizeTrackBar);
251      this.Controls.Add(this.includeChildrenCheckBox);
252      this.Controls.Add(this.levelNumericUpDown);
253      this.Controls.Add(this.sourceLabel);
254      this.Controls.Add(this.sizeLabel);
255      this.Controls.Add(this.sizeComboBox);
256      this.Controls.Add(this.splitContainer);
257      this.Controls.Add(this.xAxisComboBox);
258      this.Controls.Add(this.xLabel);
259      this.Controls.Add(this.yLabel);
260      this.Controls.Add(this.yAxisComboBox);
261      this.Name = "BubbleChartView";
262      this.Size = new System.Drawing.Size(1089, 734);
263      ((System.ComponentModel.ISupportInitialize)(this.chart)).EndInit();
264      this.childrenGroupBox.ResumeLayout(false);
265      this.splitContainer.Panel1.ResumeLayout(false);
266      this.splitContainer.Panel2.ResumeLayout(false);
267      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
268      this.splitContainer.ResumeLayout(false);
269      ((System.ComponentModel.ISupportInitialize)(this.levelNumericUpDown)).EndInit();
270      ((System.ComponentModel.ISupportInitialize)(this.sizeTrackBar)).EndInit();
271      this.ResumeLayout(false);
272      this.PerformLayout();
273
274    }
275
276    #endregion
277
278    private System.Windows.Forms.Label yLabel;
279    private System.Windows.Forms.Label xLabel;
280    private HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart chart;
281    private System.Windows.Forms.ComboBox yAxisComboBox;
282    private System.Windows.Forms.ComboBox xAxisComboBox;
283    private System.Windows.Forms.TreeView treeView;
284    private System.Windows.Forms.GroupBox childrenGroupBox;
285    private System.Windows.Forms.SplitContainer splitContainer;
286    private System.Windows.Forms.ComboBox sizeComboBox;
287    private System.Windows.Forms.Label sizeLabel;
288    private System.Windows.Forms.Label sourceLabel;
289    private System.Windows.Forms.NumericUpDown levelNumericUpDown;
290    private System.Windows.Forms.CheckBox includeChildrenCheckBox;
291    private System.Windows.Forms.TrackBar sizeTrackBar;
292  }
293}
Note: See TracBrowser for help on using the repository browser.