#region License Information /* HeuristicLab * Copyright (C) 2002-2017 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.Problems.GeneralizedQuadraticAssignment.Views { partial class GQAPAssignmentArchiveView { /// /// 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.paretoFrontChart = new HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart(); this.messageLabel = new System.Windows.Forms.Label(); ((System.ComponentModel.ISupportInitialize)(this.paretoFrontChart)).BeginInit(); this.SuspendLayout(); // // paretoFrontChart // chartArea1.AxisX.Title = "FlowDistanceQuality"; chartArea1.AxisY.Title = "InstallationQuality"; chartArea1.CursorX.IsUserSelectionEnabled = true; chartArea1.CursorY.IsUserSelectionEnabled = true; chartArea1.Name = "ChartArea1"; this.paretoFrontChart.ChartAreas.Add(chartArea1); this.paretoFrontChart.Dock = System.Windows.Forms.DockStyle.Fill; this.paretoFrontChart.Location = new System.Drawing.Point(0, 0); this.paretoFrontChart.Name = "paretoFrontChart"; series1.ChartArea = "ChartArea1"; series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Point; series1.MarkerSize = 10; series1.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Cross; series1.Name = "ParetoFront"; series1.XValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Double; series1.YValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Double; this.paretoFrontChart.Series.Add(series1); this.paretoFrontChart.Size = new System.Drawing.Size(460, 362); this.paretoFrontChart.TabIndex = 0; this.paretoFrontChart.Text = "Pareto Front"; this.paretoFrontChart.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.paretoFrontChart_MouseDoubleClick); // // messageLabel // this.messageLabel.Anchor = System.Windows.Forms.AnchorStyles.None; this.messageLabel.AutoSize = true; this.messageLabel.Location = new System.Drawing.Point(128, 151); this.messageLabel.Name = "messageLabel"; this.messageLabel.Size = new System.Drawing.Size(209, 13); this.messageLabel.TabIndex = 1; this.messageLabel.Text = "Feasible solutions have not been found yet"; // // GQAPAssignmentArchiveView // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Controls.Add(this.messageLabel); this.Controls.Add(this.paretoFrontChart); this.Name = "GQAPAssignmentArchiveView"; this.Size = new System.Drawing.Size(460, 362); ((System.ComponentModel.ISupportInitialize)(this.paretoFrontChart)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private Visualization.ChartControlsExtensions.EnhancedChart paretoFrontChart; private System.Windows.Forms.Label messageLabel; } }