Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Visualization.ChartControlsExtensions/3.3/HistogramControl.Designer.cs @ 11608

Last change on this file since 11608 was 11608, checked in by ascheibe, 10 years ago

#2279 added support for multiple data rows in histogram control

File size: 6.1 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2014 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22namespace HeuristicLab.Visualization.ChartControlsExtensions {
23  partial class HistogramControl {
24    /// <summary>
25    /// Required designer variable.
26    /// </summary>
27    private System.ComponentModel.IContainer components = null;
28
29    /// <summary>
30    /// Clean up any resources being used.
31    /// </summary>
32    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
33    protected override void Dispose(bool disposing) {
34      if (disposing && (components != null)) {
35        components.Dispose();
36      }
37      base.Dispose(disposing);
38    }
39
40    #region Component Designer generated code
41
42    /// <summary>
43    /// Required method for Designer support - do not modify
44    /// the contents of this method with the code editor.
45    /// </summary>
46    private void InitializeComponent() {
47      this.components = new System.ComponentModel.Container();
48      System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
49      System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
50      System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
51      this.chart = new HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart();
52      this.binsNumericUpDown = new System.Windows.Forms.NumericUpDown();
53      this.label1 = new System.Windows.Forms.Label();
54      this.exactCheckBox = new System.Windows.Forms.CheckBox();
55      ((System.ComponentModel.ISupportInitialize)(this.chart)).BeginInit();
56      ((System.ComponentModel.ISupportInitialize)(this.binsNumericUpDown)).BeginInit();
57      this.SuspendLayout();
58      //
59      // chart
60      //
61      this.chart.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
62            | System.Windows.Forms.AnchorStyles.Left)
63            | System.Windows.Forms.AnchorStyles.Right)));
64      chartArea1.Name = "ChartArea1";
65      this.chart.ChartAreas.Add(chartArea1);
66      legend1.Alignment = System.Drawing.StringAlignment.Center;
67      legend1.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Top;
68      legend1.Name = "Default";
69      this.chart.Legends.Add(legend1);
70      this.chart.Location = new System.Drawing.Point(0, 27);
71      this.chart.Name = "chart";
72      series1.ChartArea = "ChartArea1";
73      series1.Legend = "Default";
74      series1.Name = "Series1";
75      this.chart.Series.Add(series1);
76      this.chart.Size = new System.Drawing.Size(465, 336);
77      this.chart.TabIndex = 0;
78      //
79      // binsNumericUpDown
80      //
81      this.binsNumericUpDown.Location = new System.Drawing.Point(91, 3);
82      this.binsNumericUpDown.Maximum = new decimal(new int[] {
83            100000,
84            0,
85            0,
86            0});
87      this.binsNumericUpDown.Minimum = new decimal(new int[] {
88            1,
89            0,
90            0,
91            0});
92      this.binsNumericUpDown.Name = "binsNumericUpDown";
93      this.binsNumericUpDown.Size = new System.Drawing.Size(61, 20);
94      this.binsNumericUpDown.TabIndex = 1;
95      this.binsNumericUpDown.Value = new decimal(new int[] {
96            10,
97            0,
98            0,
99            0});
100      this.binsNumericUpDown.ValueChanged += new System.EventHandler(this.binsNumericUpDown_ValueChanged);
101      //
102      // label1
103      //
104      this.label1.AutoSize = true;
105      this.label1.Location = new System.Drawing.Point(3, 5);
106      this.label1.Name = "label1";
107      this.label1.Size = new System.Drawing.Size(82, 13);
108      this.label1.TabIndex = 2;
109      this.label1.Text = "Number of Bins:";
110      //
111      // exactCheckBox
112      //
113      this.exactCheckBox.AutoSize = true;
114      this.exactCheckBox.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
115      this.exactCheckBox.Location = new System.Drawing.Point(158, 4);
116      this.exactCheckBox.Name = "exactCheckBox";
117      this.exactCheckBox.Size = new System.Drawing.Size(56, 17);
118      this.exactCheckBox.TabIndex = 3;
119      this.exactCheckBox.Text = "Exact:";
120      this.exactCheckBox.UseVisualStyleBackColor = true;
121      this.exactCheckBox.CheckedChanged += new System.EventHandler(this.exactCheckBox_CheckedChanged);
122      //
123      // HistogramControl
124      //
125      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
126      this.Controls.Add(this.exactCheckBox);
127      this.Controls.Add(this.label1);
128      this.Controls.Add(this.binsNumericUpDown);
129      this.Controls.Add(this.chart);
130      this.Name = "HistogramControl";
131      this.Size = new System.Drawing.Size(465, 363);
132      ((System.ComponentModel.ISupportInitialize)(this.chart)).EndInit();
133      ((System.ComponentModel.ISupportInitialize)(this.binsNumericUpDown)).EndInit();
134      this.ResumeLayout(false);
135      this.PerformLayout();
136
137    }
138
139    #endregion
140
141    private EnhancedChart chart;
142    private System.Windows.Forms.NumericUpDown binsNumericUpDown;
143    private System.Windows.Forms.Label label1;
144    private System.Windows.Forms.CheckBox exactCheckBox;
145  }
146}
Note: See TracBrowser for help on using the repository browser.