Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/19/15 13:27:06 (9 years ago)
Author:
pfleck
Message:

#2379
Fixed zooming issues.
Added "no data available" label.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/BubbleChart/HeuristicLab.Optimization.BubbleChart/3.3/BubbleChartView.Designer.cs

    r12881 r12882  
    4646    private void InitializeComponent() {
    4747      this.components = new System.ComponentModel.Container();
    48       System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
    49       System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
     48      System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea2 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     49      System.Windows.Forms.DataVisualization.Charting.Series series2 = new System.Windows.Forms.DataVisualization.Charting.Series();
    5050      this.yLabel = new System.Windows.Forms.Label();
    5151      this.xLabel = new System.Windows.Forms.Label();
     
    6666      this.yJitterTrackBar = new System.Windows.Forms.TrackBar();
    6767      this.xJitterTrackBar = new System.Windows.Forms.TrackBar();
     68      this.noDataLabel = new System.Windows.Forms.Label();
    6869      ((System.ComponentModel.ISupportInitialize)(this.chart)).BeginInit();
    6970      this.childrenGroupBox.SuspendLayout();
     
    102103            | System.Windows.Forms.AnchorStyles.Left)
    103104            | System.Windows.Forms.AnchorStyles.Right)));
    104       chartArea1.Name = "ChartArea1";
    105       this.chart.ChartAreas.Add(chartArea1);
     105      chartArea2.Name = "ChartArea1";
     106      this.chart.ChartAreas.Add(chartArea2);
    106107      this.chart.Location = new System.Drawing.Point(3, 3);
    107108      this.chart.Name = "chart";
    108       series1.ChartArea = "ChartArea1";
    109       series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Point;
    110       series1.IsVisibleInLegend = false;
    111       series1.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Circle;
    112       series1.Name = "Bubbles";
    113       series1.YValuesPerPoint = 2;
    114       this.chart.Series.Add(series1);
     109      series2.ChartArea = "ChartArea1";
     110      series2.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Point;
     111      series2.IsVisibleInLegend = false;
     112      series2.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Circle;
     113      series2.Name = "Bubbles";
     114      series2.YValuesPerPoint = 2;
     115      this.chart.Series.Add(series2);
    115116      this.chart.Size = new System.Drawing.Size(966, 668);
    116117      this.chart.TabIndex = 7;
     
    178179      // splitContainer.Panel2
    179180      //
     181      this.splitContainer.Panel2.Controls.Add(this.noDataLabel);
    180182      this.splitContainer.Panel2.Controls.Add(this.chart);
    181183      this.splitContainer.Size = new System.Drawing.Size(1083, 674);
     
    289291      this.xJitterTrackBar.TickStyle = System.Windows.Forms.TickStyle.None;
    290292      this.xJitterTrackBar.ValueChanged += new System.EventHandler(this.jitterTrackBar_ValueChanged);
     293      //
     294      // noDataLabel
     295      //
     296      this.noDataLabel.Anchor = System.Windows.Forms.AnchorStyles.None;
     297      this.noDataLabel.AutoSize = true;
     298      this.noDataLabel.Location = new System.Drawing.Point(469, 323);
     299      this.noDataLabel.Name = "noDataLabel";
     300      this.noDataLabel.Size = new System.Drawing.Size(139, 13);
     301      this.noDataLabel.TabIndex = 8;
     302      this.noDataLabel.Text = "No data could be displayed.";
     303      this.noDataLabel.Visible = false;
    291304      //
    292305      // BubbleChartView
     
    317330      this.splitContainer.Panel1.ResumeLayout(false);
    318331      this.splitContainer.Panel2.ResumeLayout(false);
     332      this.splitContainer.Panel2.PerformLayout();
    319333      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
    320334      this.splitContainer.ResumeLayout(false);
     
    348362    private System.Windows.Forms.TrackBar yJitterTrackBar;
    349363    private System.Windows.Forms.TrackBar xJitterTrackBar;
     364    private System.Windows.Forms.Label noDataLabel;
    350365  }
    351366}
Note: See TracChangeset for help on using the changeset viewer.