Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/01/10 12:41:45 (13 years ago)
Author:
swinkler
Message:

Worked on population diversity analysis (added current similarities result) and heatmap view. (#1188)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.DiversityAnalysis/HeuristicLab.Problems.TravelingSalesman.Views/3.3/HeatmapView.Designer.cs

    r4699 r4700  
    2424    /// </summary>
    2525    private void InitializeComponent() {
    26       System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(HeatmapView));
    27 
    2826      System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
    2927      System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
    3028      System.Windows.Forms.DataVisualization.Charting.Title title1 = new System.Windows.Forms.DataVisualization.Charting.Title();
    31 
     29      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(HeatmapView));
    3230      this.chart = new HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart();
    3331      this.ColorsPictureBox = new System.Windows.Forms.PictureBox();
     
    4341                  | System.Windows.Forms.AnchorStyles.Left)
    4442                  | System.Windows.Forms.AnchorStyles.Right)));
    45       this.chart.Location = new System.Drawing.Point(3, 3);
     43      this.chart.BorderlineColor = System.Drawing.Color.Black;
     44      this.chart.BorderlineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Solid;
     45      chartArea1.AxisX.IntervalAutoMode = System.Windows.Forms.DataVisualization.Charting.IntervalAutoMode.VariableCount;
     46      chartArea1.AxisX.LabelAutoFitStyle = ((System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles)((System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.IncreaseFont | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.DecreaseFont)));
     47      chartArea1.AxisX.Title = "Solution Index";
     48      chartArea1.AxisY.Maximum = 1D;
     49      chartArea1.AxisY.Minimum = 0D;
     50      chartArea1.AxisY.Title = "Solution Index";
     51      chartArea1.CursorX.IsUserEnabled = true;
     52      chartArea1.CursorX.IsUserSelectionEnabled = true;
     53      chartArea1.CursorY.IsUserEnabled = true;
     54      chartArea1.CursorY.IsUserSelectionEnabled = true;
     55      chartArea1.Name = "Default";
     56      this.chart.ChartAreas.Add(chartArea1);
     57      legend1.Alignment = System.Drawing.StringAlignment.Center;
     58      legend1.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Top;
     59      legend1.Name = "Default";
     60      this.chart.Legends.Add(legend1);
     61      this.chart.Location = new System.Drawing.Point(0, 0);
    4662      this.chart.Name = "chart";
    47       this.chart.Size = new System.Drawing.Size(400, 352);
     63      this.chart.Size = new System.Drawing.Size(403, 358);
    4864      this.chart.TabIndex = 0;
    4965      this.chart.Text = "chart";
     66      title1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     67      title1.Name = "Default";
     68      title1.Text = "Solution Similarities";
     69      this.chart.Titles.Add(title1);
     70      this.chart.CustomizeLegend += new System.EventHandler<System.Windows.Forms.DataVisualization.Charting.CustomizeLegendEventArgs>(this.chart_CustomizeLegend);
     71      this.chart.MouseDown += new System.Windows.Forms.MouseEventHandler(this.chart_MouseDown);
     72      this.chart.MouseMove += new System.Windows.Forms.MouseEventHandler(this.chart_MouseMove);
    5073      //
    5174      // ColorsPictureBox
Note: See TracChangeset for help on using the changeset viewer.