Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/21/16 16:25:33 (8 years ago)
Author:
pfleck
Message:

#2597 Fixed an issue with wrongly positioned title and density chart after initialization.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.4/Controls/GradientChart.cs

    r14157 r14158  
    207207    #endregion
    208208
     209    public event EventHandler ChartPostPaint;
     210
    209211    public GradientChart() {
    210212      InitializeComponent();
     
    685687      UpdateTitlePosition();
    686688    }
     689
     690    private void chart_PostPaint(object sender, ChartPaintEventArgs e) {
     691      if (ChartPostPaint != null)
     692        ChartPostPaint(this, EventArgs.Empty);
     693    }
    687694    #endregion
    688695  }
Note: See TracChangeset for help on using the changeset viewer.