Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 13831 was 13831, checked in by pfleck, 8 years ago

#2597:

  • merged recent trunk changes for GetUsedVariablesForPrediction method.
  • Merged chart from RegressionSolutionGradientView and existing GradientChart.
  • Used the GradientChart in the RegressionSolutionGradientView.
File size: 5.1 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      this.components = new System.ComponentModel.Container();
27      System.Windows.Forms.DataVisualization.Charting.VerticalLineAnnotation verticalLineAnnotation1 = new System.Windows.Forms.DataVisualization.Charting.VerticalLineAnnotation();
28      System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
29      System.Windows.Forms.DataVisualization.Charting.StripLine stripLine1 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
30      System.Windows.Forms.DataVisualization.Charting.StripLine stripLine2 = new System.Windows.Forms.DataVisualization.Charting.StripLine();
31      System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
32      this.chart = new HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart();
33      ((System.ComponentModel.ISupportInitialize)(this.chart)).BeginInit();
34      this.SuspendLayout();
35      //
36      // chart
37      //
38      this.chart.AllowDrop = true;
39      verticalLineAnnotation1.AllowMoving = true;
40      verticalLineAnnotation1.AxisXName = "ChartArea\\rX";
41      verticalLineAnnotation1.ClipToChartArea = "ChartArea";
42      verticalLineAnnotation1.IsInfinitive = true;
43      verticalLineAnnotation1.LineColor = System.Drawing.Color.Red;
44      verticalLineAnnotation1.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
45      verticalLineAnnotation1.Name = "VerticalLineAnnotation";
46      verticalLineAnnotation1.YAxisName = "ChartArea1\\rY";
47      this.chart.Annotations.Add(verticalLineAnnotation1);
48      stripLine1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(223)))), ((int)(((byte)(58)))), ((int)(((byte)(2)))));
49      stripLine2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(223)))), ((int)(((byte)(58)))), ((int)(((byte)(2)))));
50      chartArea1.AxisX.StripLines.Add(stripLine1);
51      chartArea1.AxisX.StripLines.Add(stripLine2);
52      chartArea1.Name = "ChartArea";
53      this.chart.ChartAreas.Add(chartArea1);
54      this.chart.Dock = System.Windows.Forms.DockStyle.Fill;
55      legend1.Alignment = System.Drawing.StringAlignment.Center;
56      legend1.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Top;
57      legend1.LegendItemOrder = System.Windows.Forms.DataVisualization.Charting.LegendItemOrder.SameAsSeriesOrder;
58      legend1.Name = "Default";
59      this.chart.Legends.Add(legend1);
60      this.chart.Location = new System.Drawing.Point(0, 0);
61      this.chart.Name = "chart";
62      this.chart.PaletteCustomColors = new System.Drawing.Color[] {
63        System.Drawing.Color.FromArgb(((int)(((byte)(252)))), ((int)(((byte)(180)))), ((int)(((byte)(65))))),
64        System.Drawing.Color.FromArgb(((int)(((byte)(65)))), ((int)(((byte)(140)))), ((int)(((byte)(240)))))};
65      this.chart.Size = new System.Drawing.Size(453, 308);
66      this.chart.TabIndex = 0;
67      this.chart.AnnotationPositionChanged += new System.EventHandler(this.chart_AnnotationPositionChanged);
68      this.chart.AnnotationPositionChanging += new System.EventHandler<System.Windows.Forms.DataVisualization.Charting.AnnotationPositionChangingEventArgs>(this.chart_AnnotationPositionChanging);
69      this.chart.FormatNumber += new System.EventHandler<System.Windows.Forms.DataVisualization.Charting.FormatNumberEventArgs>(this.chart_FormatNumber);
70      this.chart.DragDrop += new System.Windows.Forms.DragEventHandler(this.GradientChart_DragDrop);
71      this.chart.DragEnter += new System.Windows.Forms.DragEventHandler(this.GradientChart_DragEnter);
72      this.chart.MouseMove += new System.Windows.Forms.MouseEventHandler(this.chart_MouseMove);
73      //
74      // GradientChart
75      //
76      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
77      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
78      this.Controls.Add(this.chart);
79      this.Name = "GradientChart";
80      this.Size = new System.Drawing.Size(453, 308);
81      ((System.ComponentModel.ISupportInitialize)(this.chart)).EndInit();
82      this.ResumeLayout(false);
83
84    }
85
86    #endregion
87
88    private HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart chart;
89  }
90}
Note: See TracBrowser for help on using the repository browser.