Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.4/Classification/DiscriminantFunctionClassificationSolutionThresholdView.Designer.cs @ 8840

Last change on this file since 8840 was 8840, checked in by sforsten, 11 years ago

#1949: class names are displayed on the left and right side of the diagram, above and beneath every threshold

File size: 5.2 KB
Line 
1using System.Windows.Forms.DataVisualization.Charting;
2namespace HeuristicLab.Problems.DataAnalysis.Views {
3  partial class DiscriminantFunctionClassificationSolutionThresholdView {
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      System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
28      System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
29      this.chart = new HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart();
30      this.JitterTrackBar = new System.Windows.Forms.TrackBar();
31      this.label1 = new System.Windows.Forms.Label();
32      ((System.ComponentModel.ISupportInitialize)(this.chart)).BeginInit();
33      ((System.ComponentModel.ISupportInitialize)(this.JitterTrackBar)).BeginInit();
34      this.SuspendLayout();
35      //
36      // chart
37      //
38      this.chart.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
39                  | System.Windows.Forms.AnchorStyles.Left)
40                  | System.Windows.Forms.AnchorStyles.Right)));
41      chartArea1.Name = "ChartArea1";
42      this.chart.ChartAreas.Add(chartArea1);
43      legend1.Alignment = System.Drawing.StringAlignment.Center;
44      legend1.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Top;
45      legend1.Name = "Legend1";
46      this.chart.Legends.Add(legend1);
47      this.chart.Location = new System.Drawing.Point(3, 3);
48      this.chart.Name = "chart";
49      this.chart.Size = new System.Drawing.Size(553, 364);
50      this.chart.TabIndex = 0;
51      this.chart.Text = "chart";
52      this.chart.CustomizeLegend += new System.EventHandler<System.Windows.Forms.DataVisualization.Charting.CustomizeLegendEventArgs>(this.chart_CustomizeLegend);
53      this.chart.AnnotationPositionChanging += new System.EventHandler<System.Windows.Forms.DataVisualization.Charting.AnnotationPositionChangingEventArgs>(this.chart_AnnotationPositionChanging);
54      this.chart.MouseDown += new System.Windows.Forms.MouseEventHandler(this.chart_MouseDown);
55      this.chart.MouseMove += new System.Windows.Forms.MouseEventHandler(this.chart_MouseMove);
56      this.chart.PostPaint += new System.EventHandler<System.Windows.Forms.DataVisualization.Charting.ChartPaintEventArgs>(chart_PostPaint);
57      //
58      // JitterTrackBar
59      //
60      this.JitterTrackBar.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
61      this.JitterTrackBar.BackColor = System.Drawing.SystemColors.Window;
62      this.JitterTrackBar.Location = new System.Drawing.Point(483, 341);
63      this.JitterTrackBar.Maximum = 100;
64      this.JitterTrackBar.Name = "JitterTrackBar";
65      this.JitterTrackBar.Size = new System.Drawing.Size(71, 45);
66      this.JitterTrackBar.TabIndex = 1;
67      this.JitterTrackBar.TickStyle = System.Windows.Forms.TickStyle.None;
68      this.JitterTrackBar.ValueChanged += new System.EventHandler(this.JitterTrackBar_ValueChanged);
69      //
70      // label1
71      //
72      this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
73      this.label1.AutoSize = true;
74      this.label1.BackColor = System.Drawing.SystemColors.Window;
75      this.label1.Location = new System.Drawing.Point(448, 345);
76      this.label1.Name = "label1";
77      this.label1.Size = new System.Drawing.Size(32, 13);
78      this.label1.TabIndex = 2;
79      this.label1.Text = "Jitter:";
80      //
81      // SymbolicClassificationSolutionView
82      //
83      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
84      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
85      this.Controls.Add(this.label1);
86      this.Controls.Add(this.JitterTrackBar);
87      this.Controls.Add(this.chart);
88      this.Name = "SymbolicClassificationSolutionView";
89      this.Size = new System.Drawing.Size(559, 370);
90      ((System.ComponentModel.ISupportInitialize)(this.chart)).EndInit();
91      ((System.ComponentModel.ISupportInitialize)(this.JitterTrackBar)).EndInit();
92      this.ResumeLayout(false);
93      this.PerformLayout();
94
95    }
96    #endregion
97
98    private HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart chart;
99    private System.Windows.Forms.TrackBar JitterTrackBar;
100    private System.Windows.Forms.Label label1;
101  }
102}
Note: See TracBrowser for help on using the repository browser.