Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Analysis.Views/3.3/HistogramControl.Designer.cs @ 12143

Last change on this file since 12143 was 12143, checked in by ascheibe, 9 years ago

#2351 add minimum check for bandwidth

File size: 7.8 KB
RevLine 
[11610]1#region License Information
2/* HeuristicLab
[12012]3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[11610]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
22using HeuristicLab.Visualization.ChartControlsExtensions;
23
24namespace HeuristicLab.Analysis.Views {
25  partial class HistogramControl {
26    /// <summary>
27    /// Required designer variable.
28    /// </summary>
29    private System.ComponentModel.IContainer components = null;
30
31    /// <summary>
32    /// Clean up any resources being used.
33    /// </summary>
34    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
35    protected override void Dispose(bool disposing) {
36      if (disposing && (components != null)) {
37        components.Dispose();
38      }
39      base.Dispose(disposing);
40    }
41
42    #region Component Designer generated code
43
44    /// <summary>
45    /// Required method for Designer support - do not modify
46    /// the contents of this method with the code editor.
47    /// </summary>
48    private void InitializeComponent() {
49      this.components = new System.ComponentModel.Container();
[12140]50      System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
51      System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
52      System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
[11610]53      this.chart = new HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart();
54      this.binsNumericUpDown = new System.Windows.Forms.NumericUpDown();
55      this.label1 = new System.Windows.Forms.Label();
56      this.exactCheckBox = new System.Windows.Forms.CheckBox();
[12139]57      this.label2 = new System.Windows.Forms.Label();
[12140]58      this.bandwidthNumericUpDown = new System.Windows.Forms.NumericUpDown();
[11610]59      ((System.ComponentModel.ISupportInitialize)(this.chart)).BeginInit();
60      ((System.ComponentModel.ISupportInitialize)(this.binsNumericUpDown)).BeginInit();
[12140]61      ((System.ComponentModel.ISupportInitialize)(this.bandwidthNumericUpDown)).BeginInit();
[11610]62      this.SuspendLayout();
63      //
64      // chart
65      //
[12139]66      this.chart.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
67            | System.Windows.Forms.AnchorStyles.Left)
[11610]68            | System.Windows.Forms.AnchorStyles.Right)));
[12140]69      chartArea1.Name = "ChartArea1";
70      this.chart.ChartAreas.Add(chartArea1);
71      legend1.Alignment = System.Drawing.StringAlignment.Center;
72      legend1.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Top;
73      legend1.Name = "Default";
74      this.chart.Legends.Add(legend1);
[11610]75      this.chart.Location = new System.Drawing.Point(0, 27);
76      this.chart.Name = "chart";
[12140]77      series1.ChartArea = "ChartArea1";
78      series1.Legend = "Default";
79      series1.Name = "Series1";
80      this.chart.Series.Add(series1);
[11610]81      this.chart.Size = new System.Drawing.Size(465, 336);
82      this.chart.TabIndex = 0;
83      //
84      // binsNumericUpDown
85      //
86      this.binsNumericUpDown.Location = new System.Drawing.Point(91, 3);
87      this.binsNumericUpDown.Maximum = new decimal(new int[] {
88            100000,
89            0,
90            0,
91            0});
92      this.binsNumericUpDown.Minimum = new decimal(new int[] {
[12139]93            2,
[11610]94            0,
95            0,
96            0});
97      this.binsNumericUpDown.Name = "binsNumericUpDown";
98      this.binsNumericUpDown.Size = new System.Drawing.Size(61, 20);
99      this.binsNumericUpDown.TabIndex = 1;
100      this.binsNumericUpDown.Value = new decimal(new int[] {
101            10,
102            0,
103            0,
104            0});
105      this.binsNumericUpDown.ValueChanged += new System.EventHandler(this.binsNumericUpDown_ValueChanged);
106      //
107      // label1
108      //
109      this.label1.AutoSize = true;
110      this.label1.Location = new System.Drawing.Point(3, 5);
111      this.label1.Name = "label1";
112      this.label1.Size = new System.Drawing.Size(82, 13);
113      this.label1.TabIndex = 2;
114      this.label1.Text = "Number of Bins:";
115      //
116      // exactCheckBox
117      //
118      this.exactCheckBox.AutoSize = true;
119      this.exactCheckBox.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
[12139]120      this.exactCheckBox.Location = new System.Drawing.Point(291, 4);
[11610]121      this.exactCheckBox.Name = "exactCheckBox";
122      this.exactCheckBox.Size = new System.Drawing.Size(56, 17);
123      this.exactCheckBox.TabIndex = 3;
124      this.exactCheckBox.Text = "Exact:";
125      this.exactCheckBox.UseVisualStyleBackColor = true;
126      this.exactCheckBox.CheckedChanged += new System.EventHandler(this.exactCheckBox_CheckedChanged);
127      //
[12139]128      // label2
129      //
130      this.label2.AutoSize = true;
131      this.label2.Location = new System.Drawing.Point(158, 5);
132      this.label2.Name = "label2";
133      this.label2.Size = new System.Drawing.Size(60, 13);
134      this.label2.TabIndex = 5;
135      this.label2.Text = "Bandwidth:";
136      //
[12140]137      // bandwidthNumericUpDown
[12139]138      //
[12140]139      this.bandwidthNumericUpDown.DecimalPlaces = 2;
140      this.bandwidthNumericUpDown.Location = new System.Drawing.Point(224, 3);
141      this.bandwidthNumericUpDown.Maximum = new decimal(new int[] {
[12139]142            100000000,
143            0,
144            0,
145            0});
[12140]146      this.bandwidthNumericUpDown.Minimum = new decimal(new int[] {
[12139]147            1,
148            0,
149            0,
[12143]150            851968});
[12140]151      this.bandwidthNumericUpDown.Name = "bandwidthNumericUpDown";
152      this.bandwidthNumericUpDown.Size = new System.Drawing.Size(61, 20);
153      this.bandwidthNumericUpDown.TabIndex = 4;
154      this.bandwidthNumericUpDown.Value = new decimal(new int[] {
[12139]155            1,
156            0,
157            0,
158            0});
[12140]159      this.bandwidthNumericUpDown.ValueChanged += new System.EventHandler(this.bandwidthNumericUpDown_ValueChanged);
[12139]160      //
[11610]161      // HistogramControl
162      //
163      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
[12139]164      this.Controls.Add(this.label2);
[12140]165      this.Controls.Add(this.bandwidthNumericUpDown);
[11610]166      this.Controls.Add(this.exactCheckBox);
167      this.Controls.Add(this.label1);
168      this.Controls.Add(this.binsNumericUpDown);
169      this.Controls.Add(this.chart);
170      this.Name = "HistogramControl";
171      this.Size = new System.Drawing.Size(465, 363);
172      ((System.ComponentModel.ISupportInitialize)(this.chart)).EndInit();
173      ((System.ComponentModel.ISupportInitialize)(this.binsNumericUpDown)).EndInit();
[12140]174      ((System.ComponentModel.ISupportInitialize)(this.bandwidthNumericUpDown)).EndInit();
[11610]175      this.ResumeLayout(false);
176      this.PerformLayout();
177
178    }
179
180    #endregion
181
182    private EnhancedChart chart;
183    private System.Windows.Forms.NumericUpDown binsNumericUpDown;
184    private System.Windows.Forms.Label label1;
185    private System.Windows.Forms.CheckBox exactCheckBox;
[12139]186    private System.Windows.Forms.Label label2;
[12140]187    private System.Windows.Forms.NumericUpDown bandwidthNumericUpDown;
[11610]188  }
189}
Note: See TracBrowser for help on using the repository browser.