Free cookie consent management tool by TermsFeed Policy Generator

Changeset 4699


Ignore:
Timestamp:
11/01/10 03:05:32 (13 years ago)
Author:
swinkler
Message:

Worked on first version of heatmap view, removed code that was committed unintentionally. (#1188)

Location:
branches/HeuristicLab.DiversityAnalysis/HeuristicLab.Problems.TravelingSalesman.Views/3.3
Files:
2 edited

Legend:

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

    r4698 r4699  
    2525    private void InitializeComponent() {
    2626      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(HeatmapView));
     27
     28      System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     29      System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
     30      System.Windows.Forms.DataVisualization.Charting.Title title1 = new System.Windows.Forms.DataVisualization.Charting.Title();
     31
    2732      this.chart = new HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart();
    2833      this.ColorsPictureBox = new System.Windows.Forms.PictureBox();
  • branches/HeuristicLab.DiversityAnalysis/HeuristicLab.Problems.TravelingSalesman.Views/3.3/HeatmapView.cs

    r4698 r4699  
    4747      InitializeComponent();
    4848      chart.CustomizeAllChartAreas();
    49       Series s = new Series();
    50       DataPoint p = new DataPoint(0.4, 0.2);
    51       p.Color = Color.Red;
    52       p.MarkerStyle = MarkerStyle.Diamond;
    53       p.MarkerSize = 10;
    54       s.Points.Add(p);
    55       DataPoint p2 = new DataPoint(0.6, 0.5);
    56       p2.Color = Color.Red;
    57       p2.MarkerStyle = MarkerStyle.Diamond;
    58       p2.MarkerSize = 10;
    59       s.Points.Add(p2);
    60       chart.Series.Add(s);
    61       chart.Update();
    6249    }
    6350
Note: See TracChangeset for help on using the changeset viewer.