Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 4094 was 4094, checked in by mkommend, 14 years ago

implemented first version of BoxPlotView (ticket #970)

File size: 7.3 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      System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
48      System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
49      this.xAxisLabel = new System.Windows.Forms.Label();
50      this.xAxisComboBox = new System.Windows.Forms.ComboBox();
51      this.yAxisLabel = new System.Windows.Forms.Label();
52      this.yAxisComboBox = new System.Windows.Forms.ComboBox();
53      this.chart = new System.Windows.Forms.DataVisualization.Charting.Chart();
54      this.noRunsLabel = new System.Windows.Forms.Label();
55      ((System.ComponentModel.ISupportInitialize)(this.chart)).BeginInit();
56      this.SuspendLayout();
57      //
58      // xAxisLabel
59      //
60      this.xAxisLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
61      this.xAxisLabel.AutoSize = true;
62      this.xAxisLabel.Location = new System.Drawing.Point(306, 294);
63      this.xAxisLabel.Name = "xAxisLabel";
64      this.xAxisLabel.Size = new System.Drawing.Size(15, 13);
65      this.xAxisLabel.TabIndex = 12;
66      this.xAxisLabel.Text = "x:";
67      //
68      // xAxisComboBox
69      //
70      this.xAxisComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
71      this.xAxisComboBox.BackColor = System.Drawing.SystemColors.ControlLightLight;
72      this.xAxisComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
73      this.xAxisComboBox.FormattingEnabled = true;
74      this.xAxisComboBox.Location = new System.Drawing.Point(327, 290);
75      this.xAxisComboBox.Name = "xAxisComboBox";
76      this.xAxisComboBox.Size = new System.Drawing.Size(221, 21);
77      this.xAxisComboBox.TabIndex = 11;
78      this.xAxisComboBox.SelectedIndexChanged += new System.EventHandler(this.AxisComboBox_SelectedIndexChanged);
79      //
80      // yAxisLabel
81      //
82      this.yAxisLabel.AutoSize = true;
83      this.yAxisLabel.Location = new System.Drawing.Point(3, 7);
84      this.yAxisLabel.Name = "yAxisLabel";
85      this.yAxisLabel.Size = new System.Drawing.Size(15, 13);
86      this.yAxisLabel.TabIndex = 10;
87      this.yAxisLabel.Text = "y:";
88      //
89      // yAxisComboBox
90      //
91      this.yAxisComboBox.BackColor = System.Drawing.SystemColors.ControlLightLight;
92      this.yAxisComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
93      this.yAxisComboBox.FormattingEnabled = true;
94      this.yAxisComboBox.Location = new System.Drawing.Point(24, 4);
95      this.yAxisComboBox.Name = "yAxisComboBox";
96      this.yAxisComboBox.Size = new System.Drawing.Size(221, 21);
97      this.yAxisComboBox.TabIndex = 9;
98      this.yAxisComboBox.SelectedIndexChanged += new System.EventHandler(this.AxisComboBox_SelectedIndexChanged);
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      chartArea1.Name = "ChartArea1";
106      this.chart.ChartAreas.Add(chartArea1);
107      this.chart.Location = new System.Drawing.Point(3, 28);
108      this.chart.Name = "chart";
109      series1.ChartArea = "ChartArea1";
110      series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.BoxPlot;
111      series1.IsVisibleInLegend = false;
112      series1.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Circle;
113      series1.Name = "DataSeries";
114      series1.YValuesPerPoint = 1;
115      this.chart.Series.Add(series1);
116
117      this.chart.Size = new System.Drawing.Size(546, 258);
118      this.chart.TabIndex = 17;
119      this.chart.Text = "chart";
120      this.chart.AxisViewChanged += new System.EventHandler<System.Windows.Forms.DataVisualization.Charting.ViewEventArgs>(this.chart_AxisViewChanged);
121      //
122      // noRunsLabel
123      //
124      this.noRunsLabel.Anchor = System.Windows.Forms.AnchorStyles.None;
125      this.noRunsLabel.AutoSize = true;
126      this.noRunsLabel.Location = new System.Drawing.Point(200, 134);
127      this.noRunsLabel.Name = "noRunsLabel";
128      this.noRunsLabel.Size = new System.Drawing.Size(138, 13);
129      this.noRunsLabel.TabIndex = 22;
130      this.noRunsLabel.Text = "No runs could be displayed.";
131      //
132      // RunCollectionBoxPlotView
133      //
134      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
135      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
136      this.BackColor = System.Drawing.SystemColors.Window;
137      this.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
138      this.Controls.Add(this.noRunsLabel);
139      this.Controls.Add(this.chart);
140      this.Controls.Add(this.xAxisLabel);
141      this.Controls.Add(this.xAxisComboBox);
142      this.Controls.Add(this.yAxisLabel);
143      this.Controls.Add(this.yAxisComboBox);
144      this.Name = "RunCollectionBoxPlotView";
145      this.Size = new System.Drawing.Size(552, 316);
146      ((System.ComponentModel.ISupportInitialize)(this.chart)).EndInit();
147      this.ResumeLayout(false);
148      this.PerformLayout();
149
150    }
151
152    #endregion
153
154    private System.Windows.Forms.Label xAxisLabel;
155    private System.Windows.Forms.ComboBox xAxisComboBox;
156    private System.Windows.Forms.Label yAxisLabel;
157    private System.Windows.Forms.ComboBox yAxisComboBox;
158    private System.Windows.Forms.DataVisualization.Charting.Chart chart;
159    private System.Windows.Forms.Label noRunsLabel;
160  }
161}
Note: See TracBrowser for help on using the repository browser.