Free cookie consent management tool by TermsFeed Policy Generator

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

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

#2379 Added BubbleChartView which can select the parts of the RecursiveDataItem tree which should be searched for the selected keys (axis).

File size: 10.9 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      ((System.ComponentModel.ISupportInitialize)(this.chart)).BeginInit();
61      this.childrenGroupBox.SuspendLayout();
62      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
63      this.splitContainer.Panel1.SuspendLayout();
64      this.splitContainer.Panel2.SuspendLayout();
65      this.splitContainer.SuspendLayout();
66      this.SuspendLayout();
67      //
68      // yLabel
69      //
70      this.yLabel.AutoSize = true;
71      this.yLabel.Location = new System.Drawing.Point(3, 6);
72      this.yLabel.Name = "yLabel";
73      this.yLabel.Size = new System.Drawing.Size(15, 13);
74      this.yLabel.TabIndex = 0;
75      this.yLabel.Text = "y:";
76      //
77      // xLabel
78      //
79      this.xLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
80      this.xLabel.AutoSize = true;
81      this.xLabel.Location = new System.Drawing.Point(461, 586);
82      this.xLabel.Name = "xLabel";
83      this.xLabel.Size = new System.Drawing.Size(15, 13);
84      this.xLabel.TabIndex = 2;
85      this.xLabel.Text = "x:";
86      //
87      // chart
88      //
89      this.chart.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
90            | System.Windows.Forms.AnchorStyles.Left)
91            | System.Windows.Forms.AnchorStyles.Right)));
92      chartArea2.Name = "ChartArea1";
93      this.chart.ChartAreas.Add(chartArea2);
94      this.chart.Location = new System.Drawing.Point(3, 3);
95      this.chart.Name = "chart";
96      series2.ChartArea = "ChartArea1";
97      series2.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Point;
98      series2.IsVisibleInLegend = false;
99      series2.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Circle;
100      series2.Name = "Bubbles";
101      series2.YValuesPerPoint = 2;
102      this.chart.Series.Add(series2);
103      this.chart.Size = new System.Drawing.Size(663, 541);
104      this.chart.TabIndex = 7;
105      //
106      // yAxisComboBox
107      //
108      this.yAxisComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
109      this.yAxisComboBox.FormattingEnabled = true;
110      this.yAxisComboBox.Location = new System.Drawing.Point(24, 3);
111      this.yAxisComboBox.Name = "yAxisComboBox";
112      this.yAxisComboBox.Size = new System.Drawing.Size(340, 21);
113      this.yAxisComboBox.TabIndex = 8;
114      this.yAxisComboBox.SelectedValueChanged += new System.EventHandler(this.axisComboBox_SelectedValueChanged);
115      //
116      // xAxisComboBox
117      //
118      this.xAxisComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
119      this.xAxisComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
120      this.xAxisComboBox.FormattingEnabled = true;
121      this.xAxisComboBox.Location = new System.Drawing.Point(482, 583);
122      this.xAxisComboBox.Name = "xAxisComboBox";
123      this.xAxisComboBox.Size = new System.Drawing.Size(340, 21);
124      this.xAxisComboBox.TabIndex = 9;
125      this.xAxisComboBox.SelectedValueChanged += new System.EventHandler(this.axisComboBox_SelectedValueChanged);
126      //
127      // treeView
128      //
129      this.treeView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
130            | System.Windows.Forms.AnchorStyles.Left)
131            | System.Windows.Forms.AnchorStyles.Right)));
132      this.treeView.CheckBoxes = true;
133      this.treeView.Location = new System.Drawing.Point(6, 19);
134      this.treeView.Name = "treeView";
135      this.treeView.Size = new System.Drawing.Size(128, 516);
136      this.treeView.TabIndex = 10;
137      this.treeView.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.treeView_AfterCheck);
138      //
139      // childrenGroupBox
140      //
141      this.childrenGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
142            | System.Windows.Forms.AnchorStyles.Left)
143            | System.Windows.Forms.AnchorStyles.Right)));
144      this.childrenGroupBox.Controls.Add(this.treeView);
145      this.childrenGroupBox.Location = new System.Drawing.Point(3, 3);
146      this.childrenGroupBox.Name = "childrenGroupBox";
147      this.childrenGroupBox.Size = new System.Drawing.Size(140, 541);
148      this.childrenGroupBox.TabIndex = 11;
149      this.childrenGroupBox.TabStop = false;
150      this.childrenGroupBox.Text = "Children";
151      //
152      // splitContainer
153      //
154      this.splitContainer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
155            | System.Windows.Forms.AnchorStyles.Left)
156            | System.Windows.Forms.AnchorStyles.Right)));
157      this.splitContainer.Location = new System.Drawing.Point(3, 30);
158      this.splitContainer.Name = "splitContainer";
159      //
160      // splitContainer.Panel1
161      //
162      this.splitContainer.Panel1.Controls.Add(this.childrenGroupBox);
163      //
164      // splitContainer.Panel2
165      //
166      this.splitContainer.Panel2.Controls.Add(this.chart);
167      this.splitContainer.Size = new System.Drawing.Size(819, 547);
168      this.splitContainer.SplitterDistance = 146;
169      this.splitContainer.TabIndex = 12;
170      //
171      // sizeComboBox
172      //
173      this.sizeComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
174      this.sizeComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
175      this.sizeComboBox.FormattingEnabled = true;
176      this.sizeComboBox.Location = new System.Drawing.Point(542, 3);
177      this.sizeComboBox.Name = "sizeComboBox";
178      this.sizeComboBox.Size = new System.Drawing.Size(280, 21);
179      this.sizeComboBox.TabIndex = 13;
180      this.sizeComboBox.SelectedValueChanged += new System.EventHandler(this.axisComboBox_SelectedValueChanged);
181      //
182      // sizeLabel
183      //
184      this.sizeLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
185      this.sizeLabel.AutoSize = true;
186      this.sizeLabel.Location = new System.Drawing.Point(470, 6);
187      this.sizeLabel.Name = "sizeLabel";
188      this.sizeLabel.Size = new System.Drawing.Size(66, 13);
189      this.sizeLabel.TabIndex = 14;
190      this.sizeLabel.Text = "Bubble Size:";
191      //
192      // BubbleChartView
193      //
194      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
195      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
196      this.BackColor = System.Drawing.SystemColors.Window;
197      this.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
198      this.Controls.Add(this.sizeLabel);
199      this.Controls.Add(this.sizeComboBox);
200      this.Controls.Add(this.splitContainer);
201      this.Controls.Add(this.xAxisComboBox);
202      this.Controls.Add(this.xLabel);
203      this.Controls.Add(this.yLabel);
204      this.Controls.Add(this.yAxisComboBox);
205      this.Name = "BubbleChartView";
206      this.Size = new System.Drawing.Size(825, 607);
207      ((System.ComponentModel.ISupportInitialize)(this.chart)).EndInit();
208      this.childrenGroupBox.ResumeLayout(false);
209      this.splitContainer.Panel1.ResumeLayout(false);
210      this.splitContainer.Panel2.ResumeLayout(false);
211      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
212      this.splitContainer.ResumeLayout(false);
213      this.ResumeLayout(false);
214      this.PerformLayout();
215
216    }
217
218    #endregion
219
220    private System.Windows.Forms.Label yLabel;
221    private System.Windows.Forms.Label xLabel;
222    private HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart chart;
223    private System.Windows.Forms.ComboBox yAxisComboBox;
224    private System.Windows.Forms.ComboBox xAxisComboBox;
225    private System.Windows.Forms.TreeView treeView;
226    private System.Windows.Forms.GroupBox childrenGroupBox;
227    private System.Windows.Forms.SplitContainer splitContainer;
228    private System.Windows.Forms.ComboBox sizeComboBox;
229    private System.Windows.Forms.Label sizeLabel;
230  }
231}
Note: See TracBrowser for help on using the repository browser.