Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.DataPreprocessing.Views/3.4/DataCompletenessView.Designer.cs @ 11623

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

datacompleteness view
formating filter percentage

File size: 2.4 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      this.chart = new HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart();
31      ((System.ComponentModel.ISupportInitialize)(this.chart)).BeginInit();
32      this.SuspendLayout();
33      //
34      // chart
35      //
36      this.chart.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
37            | System.Windows.Forms.AnchorStyles.Left)
38            | System.Windows.Forms.AnchorStyles.Right)));
39      chartArea1.Name = "ChartArea1";
40      this.chart.ChartAreas.Add(chartArea1);
41      legend1.Name = "Legend1";
42      this.chart.Legends.Add(legend1);
43      this.chart.Location = new System.Drawing.Point(4, 4);
44      this.chart.Name = "chart";
45      this.chart.Size = new System.Drawing.Size(486, 337);
46      this.chart.TabIndex = 0;
47      this.chart.Text = "enhancedChart1";
48      //
49      // DataCompletenessView
50      //
51      this.Controls.Add(this.chart);
52      this.Name = "DataCompletenessView";
53      this.Size = new System.Drawing.Size(493, 344);
54      ((System.ComponentModel.ISupportInitialize)(this.chart)).EndInit();
55      this.ResumeLayout(false);
56
57    }
58
59    #endregion
60
61    private Visualization.ChartControlsExtensions.EnhancedChart chart;
62
63
64  }
65}
Note: See TracBrowser for help on using the repository browser.