Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionBoxPlotView.Designer.cs @ 4652

Last change on this file since 4652 was 4652, checked in by mkommend, 13 years ago

Added statistical information to the RunCollectionBoxPlotView and corrected minor bugs in the 'RunCollectionBubbleChartView' and the 'RunCollectionBoxPlotView' (ticket #1135).

File size: 10.7 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 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.Views {
23  partial class RunCollectionBoxPlotView {
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.xAxisLabel = new System.Windows.Forms.Label();
51      this.xAxisComboBox = new System.Windows.Forms.ComboBox();
52      this.yAxisLabel = new System.Windows.Forms.Label();
53      this.yAxisComboBox = new System.Windows.Forms.ComboBox();
54      this.chart = new HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart();
55      this.noRunsLabel = new System.Windows.Forms.Label();
56      this.splitContainer = new System.Windows.Forms.SplitContainer();
57      this.statisticsGroupBox = new System.Windows.Forms.GroupBox();
58      this.statisticsMatrixView = new HeuristicLab.Data.Views.StringConvertibleMatrixView();
59      this.tooltip = new System.Windows.Forms.ToolTip(this.components);
60      ((System.ComponentModel.ISupportInitialize)(this.chart)).BeginInit();
61      this.splitContainer.Panel1.SuspendLayout();
62      this.splitContainer.Panel2.SuspendLayout();
63      this.splitContainer.SuspendLayout();
64      this.statisticsGroupBox.SuspendLayout();
65      this.SuspendLayout();
66      //
67      // xAxisLabel
68      //
69      this.xAxisLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
70      this.xAxisLabel.AutoSize = true;
71      this.xAxisLabel.Location = new System.Drawing.Point(298, 256);
72      this.xAxisLabel.Name = "xAxisLabel";
73      this.xAxisLabel.Size = new System.Drawing.Size(15, 13);
74      this.xAxisLabel.TabIndex = 12;
75      this.xAxisLabel.Text = "x:";
76      //
77      // xAxisComboBox
78      //
79      this.xAxisComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
80      this.xAxisComboBox.BackColor = System.Drawing.SystemColors.ControlLightLight;
81      this.xAxisComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
82      this.xAxisComboBox.FormattingEnabled = true;
83      this.xAxisComboBox.Location = new System.Drawing.Point(319, 253);
84      this.xAxisComboBox.Name = "xAxisComboBox";
85      this.xAxisComboBox.Size = new System.Drawing.Size(221, 21);
86      this.xAxisComboBox.TabIndex = 11;
87      this.xAxisComboBox.SelectedIndexChanged += new System.EventHandler(this.AxisComboBox_SelectedIndexChanged);
88      //
89      // yAxisLabel
90      //
91      this.yAxisLabel.AutoSize = true;
92      this.yAxisLabel.Location = new System.Drawing.Point(3, 6);
93      this.yAxisLabel.Name = "yAxisLabel";
94      this.yAxisLabel.Size = new System.Drawing.Size(15, 13);
95      this.yAxisLabel.TabIndex = 10;
96      this.yAxisLabel.Text = "y:";
97      //
98      // yAxisComboBox
99      //
100      this.yAxisComboBox.BackColor = System.Drawing.SystemColors.ControlLightLight;
101      this.yAxisComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
102      this.yAxisComboBox.FormattingEnabled = true;
103      this.yAxisComboBox.Location = new System.Drawing.Point(24, 3);
104      this.yAxisComboBox.Name = "yAxisComboBox";
105      this.yAxisComboBox.Size = new System.Drawing.Size(221, 21);
106      this.yAxisComboBox.TabIndex = 9;
107      this.yAxisComboBox.SelectedIndexChanged += new System.EventHandler(this.AxisComboBox_SelectedIndexChanged);
108      //
109      // chart
110      //
111      this.chart.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
112                  | System.Windows.Forms.AnchorStyles.Left)
113                  | System.Windows.Forms.AnchorStyles.Right)));
114      chartArea1.Name = "ChartArea1";
115      this.chart.ChartAreas.Add(chartArea1);
116      this.chart.Location = new System.Drawing.Point(6, 30);
117      this.chart.Name = "chart";
118      series1.ChartArea = "ChartArea1";
119      series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.BoxPlot;
120      series1.IsVisibleInLegend = false;
121      series1.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Circle;
122      series1.Name = "DataSeries";
123      series1.YValuesPerPoint = 6;
124      this.chart.Series.Add(series1);
125      this.chart.Size = new System.Drawing.Size(534, 217);
126      this.chart.TabIndex = 17;
127      this.chart.Text = "chart";
128      this.chart.AxisViewChanged += new System.EventHandler<System.Windows.Forms.DataVisualization.Charting.ViewEventArgs>(this.chart_AxisViewChanged);
129      this.chart.MouseMove += new System.Windows.Forms.MouseEventHandler(this.chart_MouseMove);
130      //
131      // noRunsLabel
132      //
133      this.noRunsLabel.Anchor = System.Windows.Forms.AnchorStyles.None;
134      this.noRunsLabel.AutoSize = true;
135      this.noRunsLabel.Location = new System.Drawing.Point(212, 122);
136      this.noRunsLabel.Name = "noRunsLabel";
137      this.noRunsLabel.Size = new System.Drawing.Size(138, 13);
138      this.noRunsLabel.TabIndex = 22;
139      this.noRunsLabel.Text = "No runs could be displayed.";
140      //
141      // splitContainer
142      //
143      this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
144      this.splitContainer.Location = new System.Drawing.Point(0, 0);
145      this.splitContainer.Name = "splitContainer";
146      this.splitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
147      //
148      // splitContainer.Panel1
149      //
150      this.splitContainer.Panel1.Controls.Add(this.xAxisLabel);
151      this.splitContainer.Panel1.Controls.Add(this.noRunsLabel);
152      this.splitContainer.Panel1.Controls.Add(this.yAxisLabel);
153      this.splitContainer.Panel1.Controls.Add(this.xAxisComboBox);
154      this.splitContainer.Panel1.Controls.Add(this.yAxisComboBox);
155      this.splitContainer.Panel1.Controls.Add(this.chart);
156      //
157      // splitContainer.Panel2
158      //
159      this.splitContainer.Panel2.Controls.Add(this.statisticsGroupBox);
160      this.splitContainer.Size = new System.Drawing.Size(543, 416);
161      this.splitContainer.SplitterDistance = 277;
162      this.splitContainer.TabIndex = 23;
163      //
164      // statisticsGroupBox
165      //
166      this.statisticsGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
167                  | System.Windows.Forms.AnchorStyles.Left)
168                  | System.Windows.Forms.AnchorStyles.Right)));
169      this.statisticsGroupBox.Controls.Add(this.statisticsMatrixView);
170      this.statisticsGroupBox.Location = new System.Drawing.Point(3, 3);
171      this.statisticsGroupBox.Name = "statisticsGroupBox";
172      this.statisticsGroupBox.Size = new System.Drawing.Size(534, 129);
173      this.statisticsGroupBox.TabIndex = 1;
174      this.statisticsGroupBox.TabStop = false;
175      this.statisticsGroupBox.Text = "Statistics";
176      //
177      // statisticsMatrixView
178      //
179      this.statisticsMatrixView.Caption = "StringConvertibleMatrix View";
180      this.statisticsMatrixView.Content = null;
181      this.statisticsMatrixView.Dock = System.Windows.Forms.DockStyle.Fill;
182      this.statisticsMatrixView.Location = new System.Drawing.Point(3, 16);
183      this.statisticsMatrixView.Name = "statisticsMatrixView";
184      this.statisticsMatrixView.ReadOnly = true;
185      this.statisticsMatrixView.ShowRowsAndColumnsTextBox = false;
186      this.statisticsMatrixView.Size = new System.Drawing.Size(528, 110);
187      this.statisticsMatrixView.TabIndex = 0;
188      //
189      // RunCollectionBoxPlotView
190      //
191      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
192      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
193      this.BackColor = System.Drawing.SystemColors.Window;
194      this.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
195      this.Controls.Add(this.splitContainer);
196      this.Name = "RunCollectionBoxPlotView";
197      this.Size = new System.Drawing.Size(543, 416);
198      ((System.ComponentModel.ISupportInitialize)(this.chart)).EndInit();
199      this.splitContainer.Panel1.ResumeLayout(false);
200      this.splitContainer.Panel1.PerformLayout();
201      this.splitContainer.Panel2.ResumeLayout(false);
202      this.splitContainer.ResumeLayout(false);
203      this.statisticsGroupBox.ResumeLayout(false);
204      this.ResumeLayout(false);
205
206    }
207
208    #endregion
209
210    private System.Windows.Forms.Label xAxisLabel;
211    private System.Windows.Forms.ComboBox xAxisComboBox;
212    private System.Windows.Forms.Label yAxisLabel;
213    private System.Windows.Forms.ComboBox yAxisComboBox;
214    private HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart chart;
215    private System.Windows.Forms.Label noRunsLabel;
216    private System.Windows.Forms.SplitContainer splitContainer;
217    private Data.Views.StringConvertibleMatrixView statisticsMatrixView;
218    private System.Windows.Forms.GroupBox statisticsGroupBox;
219    private System.Windows.Forms.ToolTip tooltip;
220  }
221}
Note: See TracBrowser for help on using the repository browser.