#region License Information /* HeuristicLab * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) * * This file is part of HeuristicLab. * * HeuristicLab is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * HeuristicLab is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with HeuristicLab. If not, see . */ #endregion namespace HeuristicLab.Optimization.Views { partial class RunCollectionBoxPlotView { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Component Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea(); System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series(); this.xAxisLabel = new System.Windows.Forms.Label(); this.xAxisComboBox = new System.Windows.Forms.ComboBox(); this.yAxisLabel = new System.Windows.Forms.Label(); this.yAxisComboBox = new System.Windows.Forms.ComboBox(); this.chart = new System.Windows.Forms.DataVisualization.Charting.Chart(); this.noRunsLabel = new System.Windows.Forms.Label(); ((System.ComponentModel.ISupportInitialize)(this.chart)).BeginInit(); this.SuspendLayout(); // // xAxisLabel // this.xAxisLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.xAxisLabel.AutoSize = true; this.xAxisLabel.Location = new System.Drawing.Point(306, 294); this.xAxisLabel.Name = "xAxisLabel"; this.xAxisLabel.Size = new System.Drawing.Size(15, 13); this.xAxisLabel.TabIndex = 12; this.xAxisLabel.Text = "x:"; // // xAxisComboBox // this.xAxisComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.xAxisComboBox.BackColor = System.Drawing.SystemColors.ControlLightLight; this.xAxisComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.xAxisComboBox.FormattingEnabled = true; this.xAxisComboBox.Location = new System.Drawing.Point(327, 290); this.xAxisComboBox.Name = "xAxisComboBox"; this.xAxisComboBox.Size = new System.Drawing.Size(221, 21); this.xAxisComboBox.TabIndex = 11; this.xAxisComboBox.SelectedIndexChanged += new System.EventHandler(this.AxisComboBox_SelectedIndexChanged); // // yAxisLabel // this.yAxisLabel.AutoSize = true; this.yAxisLabel.Location = new System.Drawing.Point(3, 7); this.yAxisLabel.Name = "yAxisLabel"; this.yAxisLabel.Size = new System.Drawing.Size(15, 13); this.yAxisLabel.TabIndex = 10; this.yAxisLabel.Text = "y:"; // // yAxisComboBox // this.yAxisComboBox.BackColor = System.Drawing.SystemColors.ControlLightLight; this.yAxisComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.yAxisComboBox.FormattingEnabled = true; this.yAxisComboBox.Location = new System.Drawing.Point(24, 4); this.yAxisComboBox.Name = "yAxisComboBox"; this.yAxisComboBox.Size = new System.Drawing.Size(221, 21); this.yAxisComboBox.TabIndex = 9; this.yAxisComboBox.SelectedIndexChanged += new System.EventHandler(this.AxisComboBox_SelectedIndexChanged); // // chart // this.chart.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); chartArea1.Name = "ChartArea1"; this.chart.ChartAreas.Add(chartArea1); this.chart.Location = new System.Drawing.Point(3, 28); this.chart.Name = "chart"; series1.ChartArea = "ChartArea1"; series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.BoxPlot; series1.IsVisibleInLegend = false; series1.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Circle; series1.Name = "DataSeries"; series1.YValuesPerPoint = 1; this.chart.Series.Add(series1); this.chart.Size = new System.Drawing.Size(546, 258); this.chart.TabIndex = 17; this.chart.Text = "chart"; this.chart.AxisViewChanged += new System.EventHandler(this.chart_AxisViewChanged); // // noRunsLabel // this.noRunsLabel.Anchor = System.Windows.Forms.AnchorStyles.None; this.noRunsLabel.AutoSize = true; this.noRunsLabel.Location = new System.Drawing.Point(200, 134); this.noRunsLabel.Name = "noRunsLabel"; this.noRunsLabel.Size = new System.Drawing.Size(138, 13); this.noRunsLabel.TabIndex = 22; this.noRunsLabel.Text = "No runs could be displayed."; // // RunCollectionBoxPlotView // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.SystemColors.Window; this.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.Controls.Add(this.noRunsLabel); this.Controls.Add(this.chart); this.Controls.Add(this.xAxisLabel); this.Controls.Add(this.xAxisComboBox); this.Controls.Add(this.yAxisLabel); this.Controls.Add(this.yAxisComboBox); this.Name = "RunCollectionBoxPlotView"; this.Size = new System.Drawing.Size(552, 316); ((System.ComponentModel.ISupportInitialize)(this.chart)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label xAxisLabel; private System.Windows.Forms.ComboBox xAxisComboBox; private System.Windows.Forms.Label yAxisLabel; private System.Windows.Forms.ComboBox yAxisComboBox; private System.Windows.Forms.DataVisualization.Charting.Chart chart; private System.Windows.Forms.Label noRunsLabel; } }