Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/19/16 13:46:15 (8 years ago)
Author:
mkommend
Message:

#1087: Fixed bugs in Spacing and Hypervolume calculation, corrected plugin dependencies and minor changes to the scatter plot view.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Problems.MultiObjectiveTestFunctions/HeuristicLab.Problems.MultiObjectiveTestFunctions/3.3/Views/MOFrontScatterPlotView.cs

    r14092 r14108  
    2020#endregion
    2121using System;
    22 using System.Data;
    2322using System.Drawing;
    2423using System.Linq;
     
    4746
    4847    public MOQualitiesScatterPlotView()
    49         : base() {
     48      : base() {
    5049      InitializeComponent();
    5150
     
    5756      this.chart.TextAntiAliasingQuality = TextAntiAliasingQuality.High;
    5857      this.chart.AxisViewChanged += new EventHandler<System.Windows.Forms.DataVisualization.Charting.ViewEventArgs>(chart_AxisViewChanged);
     58      this.chart.GetToolTipText += new System.EventHandler<ToolTipEventArgs>(this.Chart_GetToolTipText);
    5959
    6060      //configure axis
     
    7272    }
    7373
    74     protected override void RegisterContentEvents() {
    75       base.RegisterContentEvents();
    76       this.chart.GetToolTipText += new System.EventHandler<ToolTipEventArgs>(this.Chart_GetToolTipText);
    77     }
    78 
    79     protected override void DeregisterContentEvents() {
    80       base.DeregisterContentEvents();
    81       this.chart.GetToolTipText -= new System.EventHandler<ToolTipEventArgs>(this.Chart_GetToolTipText);
    82     }
    8374
    8475    private void Chart_GetToolTipText(object sender, ToolTipEventArgs e) {
Note: See TracChangeset for help on using the changeset viewer.