[11610] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[14186] | 3 | * Copyright (C) 2002-2016 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 |
|
---|
| 22 | using HeuristicLab.Visualization.ChartControlsExtensions;
|
---|
| 23 |
|
---|
| 24 | namespace 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();
|
---|
[12725] | 50 | System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea2 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
|
---|
| 51 | System.Windows.Forms.DataVisualization.Charting.Legend legend2 = new System.Windows.Forms.DataVisualization.Charting.Legend();
|
---|
| 52 | System.Windows.Forms.DataVisualization.Charting.Series series2 = 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();
|
---|
[12154] | 57 | this.label2 = new System.Windows.Forms.Label();
|
---|
| 58 | this.bandwidthNumericUpDown = new System.Windows.Forms.NumericUpDown();
|
---|
[12725] | 59 | this.noDataLabel = new System.Windows.Forms.Label();
|
---|
[11610] | 60 | ((System.ComponentModel.ISupportInitialize)(this.chart)).BeginInit();
|
---|
| 61 | ((System.ComponentModel.ISupportInitialize)(this.binsNumericUpDown)).BeginInit();
|
---|
[12154] | 62 | ((System.ComponentModel.ISupportInitialize)(this.bandwidthNumericUpDown)).BeginInit();
|
---|
[11610] | 63 | this.SuspendLayout();
|
---|
| 64 | //
|
---|
| 65 | // chart
|
---|
| 66 | //
|
---|
[12154] | 67 | this.chart.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 68 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
[11610] | 69 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[12725] | 70 | chartArea2.Name = "ChartArea1";
|
---|
| 71 | this.chart.ChartAreas.Add(chartArea2);
|
---|
| 72 | legend2.Alignment = System.Drawing.StringAlignment.Center;
|
---|
| 73 | legend2.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Top;
|
---|
| 74 | legend2.Name = "Default";
|
---|
| 75 | this.chart.Legends.Add(legend2);
|
---|
[11610] | 76 | this.chart.Location = new System.Drawing.Point(0, 27);
|
---|
| 77 | this.chart.Name = "chart";
|
---|
[12725] | 78 | series2.ChartArea = "ChartArea1";
|
---|
| 79 | series2.Legend = "Default";
|
---|
| 80 | series2.Name = "Series1";
|
---|
| 81 | this.chart.Series.Add(series2);
|
---|
[11610] | 82 | this.chart.Size = new System.Drawing.Size(465, 336);
|
---|
| 83 | this.chart.TabIndex = 0;
|
---|
| 84 | //
|
---|
| 85 | // binsNumericUpDown
|
---|
| 86 | //
|
---|
| 87 | this.binsNumericUpDown.Location = new System.Drawing.Point(91, 3);
|
---|
| 88 | this.binsNumericUpDown.Maximum = new decimal(new int[] {
|
---|
| 89 | 100000,
|
---|
| 90 | 0,
|
---|
| 91 | 0,
|
---|
| 92 | 0});
|
---|
| 93 | this.binsNumericUpDown.Minimum = new decimal(new int[] {
|
---|
[12154] | 94 | 2,
|
---|
[11610] | 95 | 0,
|
---|
| 96 | 0,
|
---|
| 97 | 0});
|
---|
| 98 | this.binsNumericUpDown.Name = "binsNumericUpDown";
|
---|
| 99 | this.binsNumericUpDown.Size = new System.Drawing.Size(61, 20);
|
---|
| 100 | this.binsNumericUpDown.TabIndex = 1;
|
---|
| 101 | this.binsNumericUpDown.Value = new decimal(new int[] {
|
---|
| 102 | 10,
|
---|
| 103 | 0,
|
---|
| 104 | 0,
|
---|
| 105 | 0});
|
---|
| 106 | this.binsNumericUpDown.ValueChanged += new System.EventHandler(this.binsNumericUpDown_ValueChanged);
|
---|
| 107 | //
|
---|
| 108 | // label1
|
---|
| 109 | //
|
---|
| 110 | this.label1.AutoSize = true;
|
---|
| 111 | this.label1.Location = new System.Drawing.Point(3, 5);
|
---|
| 112 | this.label1.Name = "label1";
|
---|
| 113 | this.label1.Size = new System.Drawing.Size(82, 13);
|
---|
| 114 | this.label1.TabIndex = 2;
|
---|
| 115 | this.label1.Text = "Number of Bins:";
|
---|
| 116 | //
|
---|
| 117 | // exactCheckBox
|
---|
| 118 | //
|
---|
| 119 | this.exactCheckBox.AutoSize = true;
|
---|
| 120 | this.exactCheckBox.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
|
---|
[12154] | 121 | this.exactCheckBox.Location = new System.Drawing.Point(291, 4);
|
---|
[11610] | 122 | this.exactCheckBox.Name = "exactCheckBox";
|
---|
| 123 | this.exactCheckBox.Size = new System.Drawing.Size(56, 17);
|
---|
| 124 | this.exactCheckBox.TabIndex = 3;
|
---|
| 125 | this.exactCheckBox.Text = "Exact:";
|
---|
| 126 | this.exactCheckBox.UseVisualStyleBackColor = true;
|
---|
| 127 | this.exactCheckBox.CheckedChanged += new System.EventHandler(this.exactCheckBox_CheckedChanged);
|
---|
| 128 | //
|
---|
[12154] | 129 | // label2
|
---|
| 130 | //
|
---|
| 131 | this.label2.AutoSize = true;
|
---|
| 132 | this.label2.Location = new System.Drawing.Point(158, 5);
|
---|
| 133 | this.label2.Name = "label2";
|
---|
| 134 | this.label2.Size = new System.Drawing.Size(60, 13);
|
---|
| 135 | this.label2.TabIndex = 5;
|
---|
| 136 | this.label2.Text = "Bandwidth:";
|
---|
| 137 | //
|
---|
| 138 | // bandwidthNumericUpDown
|
---|
| 139 | //
|
---|
| 140 | this.bandwidthNumericUpDown.DecimalPlaces = 2;
|
---|
| 141 | this.bandwidthNumericUpDown.Location = new System.Drawing.Point(224, 3);
|
---|
| 142 | this.bandwidthNumericUpDown.Maximum = new decimal(new int[] {
|
---|
| 143 | 100000000,
|
---|
| 144 | 0,
|
---|
| 145 | 0,
|
---|
| 146 | 0});
|
---|
| 147 | this.bandwidthNumericUpDown.Minimum = new decimal(new int[] {
|
---|
| 148 | 1,
|
---|
| 149 | 0,
|
---|
| 150 | 0,
|
---|
| 151 | 851968});
|
---|
| 152 | this.bandwidthNumericUpDown.Name = "bandwidthNumericUpDown";
|
---|
| 153 | this.bandwidthNumericUpDown.Size = new System.Drawing.Size(61, 20);
|
---|
| 154 | this.bandwidthNumericUpDown.TabIndex = 4;
|
---|
| 155 | this.bandwidthNumericUpDown.Value = new decimal(new int[] {
|
---|
| 156 | 1,
|
---|
| 157 | 0,
|
---|
| 158 | 0,
|
---|
| 159 | 0});
|
---|
| 160 | this.bandwidthNumericUpDown.ValueChanged += new System.EventHandler(this.bandwidthNumericUpDown_ValueChanged);
|
---|
| 161 | //
|
---|
[12725] | 162 | // noDataLabel
|
---|
| 163 | //
|
---|
| 164 | this.noDataLabel.Anchor = System.Windows.Forms.AnchorStyles.None;
|
---|
| 165 | this.noDataLabel.AutoSize = true;
|
---|
| 166 | this.noDataLabel.Location = new System.Drawing.Point(163, 175);
|
---|
| 167 | this.noDataLabel.Name = "noDataLabel";
|
---|
| 168 | this.noDataLabel.Size = new System.Drawing.Size(139, 13);
|
---|
| 169 | this.noDataLabel.TabIndex = 22;
|
---|
| 170 | this.noDataLabel.Text = "No data could be displayed.";
|
---|
| 171 | //
|
---|
[11610] | 172 | // HistogramControl
|
---|
| 173 | //
|
---|
| 174 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
|
---|
[12725] | 175 | this.Controls.Add(this.noDataLabel);
|
---|
[12154] | 176 | this.Controls.Add(this.label2);
|
---|
| 177 | this.Controls.Add(this.bandwidthNumericUpDown);
|
---|
[11610] | 178 | this.Controls.Add(this.exactCheckBox);
|
---|
| 179 | this.Controls.Add(this.label1);
|
---|
| 180 | this.Controls.Add(this.binsNumericUpDown);
|
---|
| 181 | this.Controls.Add(this.chart);
|
---|
| 182 | this.Name = "HistogramControl";
|
---|
| 183 | this.Size = new System.Drawing.Size(465, 363);
|
---|
| 184 | ((System.ComponentModel.ISupportInitialize)(this.chart)).EndInit();
|
---|
| 185 | ((System.ComponentModel.ISupportInitialize)(this.binsNumericUpDown)).EndInit();
|
---|
[12154] | 186 | ((System.ComponentModel.ISupportInitialize)(this.bandwidthNumericUpDown)).EndInit();
|
---|
[11610] | 187 | this.ResumeLayout(false);
|
---|
| 188 | this.PerformLayout();
|
---|
| 189 |
|
---|
| 190 | }
|
---|
| 191 |
|
---|
| 192 | #endregion
|
---|
| 193 |
|
---|
| 194 | private EnhancedChart chart;
|
---|
| 195 | private System.Windows.Forms.NumericUpDown binsNumericUpDown;
|
---|
| 196 | private System.Windows.Forms.Label label1;
|
---|
| 197 | private System.Windows.Forms.CheckBox exactCheckBox;
|
---|
[12154] | 198 | private System.Windows.Forms.Label label2;
|
---|
| 199 | private System.Windows.Forms.NumericUpDown bandwidthNumericUpDown;
|
---|
[12725] | 200 | private System.Windows.Forms.Label noDataLabel;
|
---|
[11610] | 201 | }
|
---|
| 202 | }
|
---|