Free cookie consent management tool by TermsFeed Policy Generator

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

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

#2597

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