Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.BioBoost/HeuristicLab.Problems.BioBoost.Views/3.3/BioBoostParetoSetView.Designer.cs @ 13072

Last change on this file since 13072 was 13072, checked in by gkronber, 9 years ago

#2499: added code from HeuristicLab.BioBoost.Views (from private repository) nothing much has been changed

File size: 3.8 KB
Line 
1namespace HeuristicLab.BioBoost.Views {
2  partial class BioBoostParetoSetView {
3    /// <summary>
4    /// Required designer variable.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Clean up any resources being used.
10    /// </summary>
11    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12    protected override void Dispose(bool disposing) {
13      if (disposing && (components != null)) {
14        components.Dispose();
15      }
16      base.Dispose(disposing);
17    }
18
19    #region Component Designer generated code
20
21    /// <summary>
22    /// Required method for Designer support - do not modify
23    /// the contents of this method with the code editor.
24    /// </summary>
25    private void InitializeComponent() {
26      System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
27      System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
28      System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint1 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(-0.1D, 10000D);
29      this.paretoSetChart = new System.Windows.Forms.DataVisualization.Charting.Chart();
30      ((System.ComponentModel.ISupportInitialize)(this.paretoSetChart)).BeginInit();
31      this.SuspendLayout();
32      //
33      // paretoSetChart
34      //
35      this.paretoSetChart.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
36            | System.Windows.Forms.AnchorStyles.Left)
37            | System.Windows.Forms.AnchorStyles.Right)));
38      chartArea1.AxisX.IntervalAutoMode = System.Windows.Forms.DataVisualization.Charting.IntervalAutoMode.VariableCount;
39      chartArea1.AxisX.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Number;
40      chartArea1.AxisY.IntervalAutoMode = System.Windows.Forms.DataVisualization.Charting.IntervalAutoMode.VariableCount;
41      chartArea1.AxisY.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Number;
42      chartArea1.AxisY2.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Number;
43      chartArea1.Name = "ChartArea1";
44      this.paretoSetChart.ChartAreas.Add(chartArea1);
45      this.paretoSetChart.Location = new System.Drawing.Point(3, 3);
46      this.paretoSetChart.Name = "paretoSetChart";
47      series1.ChartArea = "ChartArea1";
48      series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.FastPoint;
49      series1.Name = "Series1";
50      series1.Points.Add(dataPoint1);
51      series1.ToolTip = "#VALX, #VAL";
52      series1.XValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Double;
53      series1.YValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Double;
54      this.paretoSetChart.Series.Add(series1);
55      this.paretoSetChart.Size = new System.Drawing.Size(576, 353);
56      this.paretoSetChart.TabIndex = 0;
57      this.paretoSetChart.Text = "paretoSetChart";
58      this.paretoSetChart.DoubleClick += new System.EventHandler(this.paretoSetChart_DoubleClick);
59      this.paretoSetChart.MouseDown += new System.Windows.Forms.MouseEventHandler(this.paretoSetChart_MouseDown);
60      //
61      // BioBoostParetoSetView
62      //
63      this.Controls.Add(this.paretoSetChart);
64      this.Name = "BioBoostParetoSetView";
65      this.Size = new System.Drawing.Size(582, 359);
66      ((System.ComponentModel.ISupportInitialize)(this.paretoSetChart)).EndInit();
67      this.ResumeLayout(false);
68
69    }
70
71    #endregion
72
73    private System.Windows.Forms.DataVisualization.Charting.Chart paretoSetChart;
74  }
75}
Note: See TracBrowser for help on using the repository browser.