Free cookie consent management tool by TermsFeed Policy Generator

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

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

#2597 Implemented cancellation of chart update when new update is called during calculation.

File size: 5.7 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      this.statusLabel = new System.Windows.Forms.Label();
34      ((System.ComponentModel.ISupportInitialize)(this.chart)).BeginInit();
35      this.SuspendLayout();
36      //
37      // chart
38      //
39      this.chart.AllowDrop = true;
40      verticalLineAnnotation1.AllowMoving = true;
41      verticalLineAnnotation1.AxisXName = "ChartArea\\rX";
42      verticalLineAnnotation1.ClipToChartArea = "ChartArea";
43      verticalLineAnnotation1.IsInfinitive = true;
44      verticalLineAnnotation1.LineColor = System.Drawing.Color.Red;
45      verticalLineAnnotation1.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
46      verticalLineAnnotation1.Name = "VerticalLineAnnotation";
47      verticalLineAnnotation1.YAxisName = "ChartArea1\\rY";
48      this.chart.Annotations.Add(verticalLineAnnotation1);
49      stripLine1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(223)))), ((int)(((byte)(58)))), ((int)(((byte)(2)))));
50      stripLine2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(223)))), ((int)(((byte)(58)))), ((int)(((byte)(2)))));
51      chartArea1.AxisX.StripLines.Add(stripLine1);
52      chartArea1.AxisX.StripLines.Add(stripLine2);
53      chartArea1.Name = "ChartArea";
54      this.chart.ChartAreas.Add(chartArea1);
55      this.chart.Dock = System.Windows.Forms.DockStyle.Fill;
56      legend1.Alignment = System.Drawing.StringAlignment.Center;
57      legend1.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Top;
58      legend1.LegendItemOrder = System.Windows.Forms.DataVisualization.Charting.LegendItemOrder.ReversedSeriesOrder;
59      legend1.LegendStyle = System.Windows.Forms.DataVisualization.Charting.LegendStyle.Row;
60      legend1.Name = "Default";
61      this.chart.Legends.Add(legend1);
62      this.chart.Location = new System.Drawing.Point(0, 0);
63      this.chart.Name = "chart";
64      this.chart.Size = new System.Drawing.Size(453, 308);
65      this.chart.TabIndex = 0;
66      this.chart.AnnotationPositionChanged += new System.EventHandler(this.chart_AnnotationPositionChanged);
67      this.chart.AnnotationPositionChanging += new System.EventHandler<System.Windows.Forms.DataVisualization.Charting.AnnotationPositionChangingEventArgs>(this.chart_AnnotationPositionChanging);
68      this.chart.FormatNumber += new System.EventHandler<System.Windows.Forms.DataVisualization.Charting.FormatNumberEventArgs>(this.chart_FormatNumber);
69      this.chart.DragDrop += new System.Windows.Forms.DragEventHandler(this.GradientChart_DragDrop);
70      this.chart.DragEnter += new System.Windows.Forms.DragEventHandler(this.GradientChart_DragEnter);
71      this.chart.MouseMove += new System.Windows.Forms.MouseEventHandler(this.chart_MouseMove);
72      //
73      // statusLabel
74      //
75      this.statusLabel.BackColor = System.Drawing.Color.White;
76      this.statusLabel.Image = HeuristicLab.Common.Resources.VSImageLibrary.Timer;
77      this.statusLabel.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
78      this.statusLabel.Location = new System.Drawing.Point(3, 3);
79      this.statusLabel.Margin = new System.Windows.Forms.Padding(0);
80      this.statusLabel.Name = "statusLabel";
81      this.statusLabel.Size = new System.Drawing.Size(17, 17);
82      this.statusLabel.TabIndex = 1;
83      this.statusLabel.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
84      this.statusLabel.Visible = false;
85      //
86      // GradientChart
87      //
88      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
89      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
90      this.Controls.Add(this.statusLabel);
91      this.Controls.Add(this.chart);
92      this.Name = "GradientChart";
93      this.Size = new System.Drawing.Size(453, 308);
94      ((System.ComponentModel.ISupportInitialize)(this.chart)).EndInit();
95      this.ResumeLayout(false);
96
97    }
98
99    #endregion
100
101    private HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart chart;
102    private System.Windows.Forms.Label statusLabel;
103  }
104}
Note: See TracBrowser for help on using the repository browser.