- Timestamp:
- 07/21/16 16:25:33 (9 years ago)
- Location:
- trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.4/Controls
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.4/Controls/GradientChart.Designer.cs
r14131 r14158 98 98 this.chart.Titles.Add(title1); 99 99 this.chart.SelectionRangeChanged += new System.EventHandler<System.Windows.Forms.DataVisualization.Charting.CursorEventArgs>(this.chart_SelectionRangeChanged); 100 this.chart.PostPaint += new System.EventHandler<System.Windows.Forms.DataVisualization.Charting.ChartPaintEventArgs>(this.chart_PostPaint); 100 101 this.chart.AnnotationPositionChanged += new System.EventHandler(this.chart_AnnotationPositionChanged); 101 102 this.chart.AnnotationPositionChanging += new System.EventHandler<System.Windows.Forms.DataVisualization.Charting.AnnotationPositionChangingEventArgs>(this.chart_AnnotationPositionChanging); -
trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.4/Controls/GradientChart.cs
r14157 r14158 207 207 #endregion 208 208 209 public event EventHandler ChartPostPaint; 210 209 211 public GradientChart() { 210 212 InitializeComponent(); … … 685 687 UpdateTitlePosition(); 686 688 } 689 690 private void chart_PostPaint(object sender, ChartPaintEventArgs e) { 691 if (ChartPostPaint != null) 692 ChartPostPaint(this, EventArgs.Empty); 693 } 687 694 #endregion 688 695 }
Note: See TracChangeset
for help on using the changeset viewer.