Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.EvolutionTracking/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/SlidingWindowDataView.Designer.cs @ 11891

Last change on this file since 11891 was 10271, checked in by bburlacu, 10 years ago

#1772: Fixed namespaces.

File size: 2.2 KB
Line 
1using HeuristicLab.Visualization.ChartControlsExtensions;
2
3namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Views {
4  partial class SlidingWindowDataView {
5    /// <summary>
6    /// Required designer variable.
7    /// </summary>
8    private System.ComponentModel.IContainer components = null;
9
10    /// <summary>
11    /// Clean up any resources being used.
12    /// </summary>
13    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14    protected override void Dispose(bool disposing) {
15      if (disposing && (components != null)) {
16        components.Dispose();
17      }
18      base.Dispose(disposing);
19    }
20
21    #region Component Designer generated code
22
23    /// <summary>
24    /// Required method for Designer support - do not modify
25    /// the contents of this method with the code editor.
26    /// </summary>
27    private void InitializeComponent() {
28      System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
29      this.chart = new HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart();
30      ((System.ComponentModel.ISupportInitialize)(this.chart)).BeginInit();
31      this.SuspendLayout();
32      //
33      // chart
34      //
35      chartArea1.Name = "ChartArea1";
36      this.chart.ChartAreas.Add(chartArea1);
37      this.chart.Dock = System.Windows.Forms.DockStyle.Fill;
38      this.chart.Location = new System.Drawing.Point(0, 0);
39      this.chart.Name = "chart";
40      this.chart.Size = new System.Drawing.Size(770, 410);
41      this.chart.TabIndex = 0;
42      //
43      // SlidingWindowDataView
44      //
45      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
46      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
47      this.Controls.Add(this.chart);
48      this.Name = "SlidingWindowDataView";
49      this.Size = new System.Drawing.Size(770, 410);
50      ((System.ComponentModel.ISupportInitialize)(this.chart)).EndInit();
51      this.ResumeLayout(false);
52
53    }
54
55
56    private HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart chart;
57
58    #endregion
59  }
60}
Note: See TracBrowser for help on using the repository browser.