Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.RegressionSolutionGradientView/HeuristicLab.Problems.DataAnalysis.Views/3.4/GradientChart.Designer.cs @ 13828

Last change on this file since 13828 was 13818, checked in by bburlacu, 9 years ago

#2597: Fixed small bug when the values are not correctly rendered in the chart initially. removed unused variable limits from view.

File size: 2.9 KB
Line 
1namespace HeuristicLab.Problems.DataAnalysis.Views {
2  partial class GradientChart {
3    /// <summary>
4    /// Required designer variable.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Clean up any resources being used.
10    /// </summary>
11    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12    protected override void Dispose(bool disposing) {
13      if (disposing && (components != null)) {
14        components.Dispose();
15      }
16      base.Dispose(disposing);
17    }
18
19    #region Component Designer generated code
20
21    /// <summary>
22    /// Required method for Designer support - do not modify
23    /// the contents of this method with the code editor.
24    /// </summary>
25    private void InitializeComponent() {
26      System.Windows.Forms.DataVisualization.Charting.VerticalLineAnnotation verticalLineAnnotation1 = new System.Windows.Forms.DataVisualization.Charting.VerticalLineAnnotation();
27      System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
28      System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
29      ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
30      this.SuspendLayout();
31      //
32      // GradientChart
33      //
34      this.AllowDrop = true;
35      verticalLineAnnotation1.AllowMoving = true;
36      verticalLineAnnotation1.AxisXName = "ChartArea1\\rX";
37      verticalLineAnnotation1.ClipToChartArea = "ChartArea1";
38      verticalLineAnnotation1.IsInfinitive = true;
39      verticalLineAnnotation1.LineColor = System.Drawing.Color.Red;
40      verticalLineAnnotation1.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
41      verticalLineAnnotation1.Name = "VerticalLineAnnotation1";
42      verticalLineAnnotation1.YAxisName = "ChartArea1\\rY";
43      this.Annotations.Add(verticalLineAnnotation1);
44      chartArea1.Name = "ChartArea1";
45      this.ChartAreas.Add(chartArea1);
46      series1.ChartArea = "ChartArea1";
47      series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Point;
48      series1.Name = "Series1";
49      this.Series.Add(series1);
50      this.AnnotationPositionChanged += new System.EventHandler(this.chart_AnnotationPositionChanged);
51      this.AnnotationPositionChanging += new System.EventHandler<System.Windows.Forms.DataVisualization.Charting.AnnotationPositionChangingEventArgs>(this.chart_AnnotationPositionChanging);
52      this.DragDrop += new System.Windows.Forms.DragEventHandler(this.GradientChart_DragDrop);
53      this.DragEnter += new System.Windows.Forms.DragEventHandler(this.GradientChart_DragEnter);
54      ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
55      this.ResumeLayout(false);
56
57    }
58
59    #endregion
60  }
61}
Note: See TracBrowser for help on using the repository browser.