Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.4/DataCompletenessView.Designer.cs @ 10925

Last change on this file since 10925 was 10913, checked in by psteiner, 10 years ago

DataCompletenessChart

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