Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/DataCompletenessView.Designer.cs @ 10913

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

DataCompletenessChart

File size: 2.5 KB
RevLine 
[10658]1namespace HeuristicLab.DataPreprocessing.Views {
[10877]2  partial class DataCompletenessView
3  {
[10658]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() {
[10913]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();
[10658]33      this.SuspendLayout();
34      //
[10913]35      // chart
[10736]36      //
[10913]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";
[10736]50      //
[10877]51      // DataCompletenessView
[10736]52      //
[10913]53      this.Controls.Add(this.chart);
[10877]54      this.Name = "DataCompletenessView";
55      this.Size = new System.Drawing.Size(493, 344);
[10913]56      ((System.ComponentModel.ISupportInitialize)(this.chart)).EndInit();
[10658]57      this.ResumeLayout(false);
58
59    }
60
61    #endregion
62
[10913]63    private Visualization.ChartControlsExtensions.EnhancedChart chart;
[10736]64
[10913]65
[10658]66  }
67}
Note: See TracBrowser for help on using the repository browser.