- Timestamp:
- 04/20/10 15:20:03 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionBubbleChartView.Designer.cs
r3428 r3440 24 24 /// </summary> 25 25 private void InitializeComponent() { 26 System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea 1= new System.Windows.Forms.DataVisualization.Charting.ChartArea();27 System.Windows.Forms.DataVisualization.Charting.Series series 1= new System.Windows.Forms.DataVisualization.Charting.Series();26 System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea2 = new System.Windows.Forms.DataVisualization.Charting.ChartArea(); 27 System.Windows.Forms.DataVisualization.Charting.Series series2 = new System.Windows.Forms.DataVisualization.Charting.Series(); 28 28 this.yJitterLabel = new System.Windows.Forms.Label(); 29 29 this.xJitterlabel = new System.Windows.Forms.Label(); … … 51 51 // 52 52 this.yJitterLabel.AutoSize = true; 53 this.yJitterLabel.BackColor = System.Drawing.SystemColors.Control;54 53 this.yJitterLabel.Location = new System.Drawing.Point(257, 6); 55 54 this.yJitterLabel.Name = "yJitterLabel"; … … 62 61 this.xJitterlabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); 63 62 this.xJitterlabel.AutoSize = true; 64 this.xJitterlabel.BackColor = System.Drawing.SystemColors.Control;65 63 this.xJitterlabel.Location = new System.Drawing.Point(461, 309); 66 64 this.xJitterlabel.Name = "xJitterlabel"; … … 72 70 // 73 71 this.xTrackBar.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); 74 this.xTrackBar.BackColor = System.Drawing.SystemColors.Control;75 72 this.xTrackBar.Location = new System.Drawing.Point(496, 306); 76 73 this.xTrackBar.Maximum = 100; … … 85 82 this.xAxisLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); 86 83 this.xAxisLabel.AutoSize = true; 87 this.xAxisLabel.BackColor = System.Drawing.SystemColors.Control;88 84 this.xAxisLabel.Location = new System.Drawing.Point(213, 309); 89 85 this.xAxisLabel.Name = "xAxisLabel"; … … 107 103 // 108 104 this.yAxisLabel.AutoSize = true; 109 this.yAxisLabel.BackColor = System.Drawing.SystemColors.Control;110 105 this.yAxisLabel.Location = new System.Drawing.Point(3, 6); 111 106 this.yAxisLabel.Name = "yAxisLabel"; … … 127 122 // yTrackBar 128 123 // 129 this.yTrackBar.BackColor = System.Drawing.SystemColors.Control;130 124 this.yTrackBar.Location = new System.Drawing.Point(292, 3); 131 125 this.yTrackBar.Maximum = 100; … … 152 146 this.sizeLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); 153 147 this.sizeLabel.AutoSize = true; 154 this.sizeLabel.BackColor = System.Drawing.SystemColors.Control;155 148 this.sizeLabel.Location = new System.Drawing.Point(371, 6); 156 149 this.sizeLabel.Name = "sizeLabel"; … … 164 157 | System.Windows.Forms.AnchorStyles.Left) 165 158 | System.Windows.Forms.AnchorStyles.Right))); 166 chartArea 1.Name = "ChartArea1";167 this.chart.ChartAreas.Add(chartArea 1);159 chartArea2.Name = "ChartArea1"; 160 this.chart.ChartAreas.Add(chartArea2); 168 161 this.chart.Location = new System.Drawing.Point(6, 30); 169 162 this.chart.Name = "chart"; 170 series 1.ChartArea = "ChartArea1";171 series 1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Bubble;172 series 1.CustomProperties = "BubbleMaxSize=0";173 series 1.IsVisibleInLegend = false;174 series 1.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Circle;175 series 1.Name = "Bubbles";176 series 1.YValuesPerPoint = 2;177 this.chart.Series.Add(series 1);163 series2.ChartArea = "ChartArea1"; 164 series2.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Bubble; 165 series2.CustomProperties = "BubbleMaxSize=0"; 166 series2.IsVisibleInLegend = false; 167 series2.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Circle; 168 series2.Name = "Bubbles"; 169 series2.YValuesPerPoint = 2; 170 this.chart.Series.Add(series2); 178 171 this.chart.Size = new System.Drawing.Size(556, 263); 179 172 this.chart.TabIndex = 16;
Note: See TracChangeset
for help on using the changeset viewer.