[6010] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2011 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 |
|
---|
| 22 | namespace HeuristicLab.Analysis.Views {
|
---|
| 23 | partial class DataRowVisualPropertiesControl {
|
---|
| 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.chartTypeComboBox = new System.Windows.Forms.ComboBox();
|
---|
| 48 | this.colorDialog = new System.Windows.Forms.ColorDialog();
|
---|
| 49 | this.colorButton = new System.Windows.Forms.Button();
|
---|
| 50 | this.startIndexZeroCheckBox = new System.Windows.Forms.CheckBox();
|
---|
| 51 | this.binsNumericUpDown = new System.Windows.Forms.NumericUpDown();
|
---|
| 52 | this.label1 = new System.Windows.Forms.Label();
|
---|
| 53 | this.label2 = new System.Windows.Forms.Label();
|
---|
| 54 | this.label3 = new System.Windows.Forms.Label();
|
---|
| 55 | this.commonGroupBox = new System.Windows.Forms.GroupBox();
|
---|
[6016] | 56 | this.axisGroupBox = new System.Windows.Forms.GroupBox();
|
---|
| 57 | this.label5 = new System.Windows.Forms.Label();
|
---|
| 58 | this.label6 = new System.Windows.Forms.Label();
|
---|
| 59 | this.panel1 = new System.Windows.Forms.Panel();
|
---|
| 60 | this.yAxisSecondaryRadioButton = new System.Windows.Forms.RadioButton();
|
---|
| 61 | this.yAxisPrimaryRadioButton = new System.Windows.Forms.RadioButton();
|
---|
[6014] | 62 | this.panel2 = new System.Windows.Forms.Panel();
|
---|
| 63 | this.xAxisPrimaryRadioButton = new System.Windows.Forms.RadioButton();
|
---|
[6012] | 64 | this.xAxisSecondaryRadioButton = new System.Windows.Forms.RadioButton();
|
---|
[6010] | 65 | this.histoGramGroupBox = new System.Windows.Forms.GroupBox();
|
---|
[6014] | 66 | this.panel3 = new System.Windows.Forms.Panel();
|
---|
| 67 | this.binsApproximatelyRadioButton = new System.Windows.Forms.RadioButton();
|
---|
| 68 | this.binsExactRadioButton = new System.Windows.Forms.RadioButton();
|
---|
[6012] | 69 | this.lineChartGroupBox = new System.Windows.Forms.GroupBox();
|
---|
| 70 | this.lineWidthNumericUpDown = new System.Windows.Forms.NumericUpDown();
|
---|
| 71 | this.label4 = new System.Windows.Forms.Label();
|
---|
| 72 | this.label7 = new System.Windows.Forms.Label();
|
---|
| 73 | this.lineStyleComboBox = new System.Windows.Forms.ComboBox();
|
---|
| 74 | this.label8 = new System.Windows.Forms.Label();
|
---|
[6010] | 75 | ((System.ComponentModel.ISupportInitialize)(this.binsNumericUpDown)).BeginInit();
|
---|
| 76 | this.commonGroupBox.SuspendLayout();
|
---|
[6016] | 77 | this.axisGroupBox.SuspendLayout();
|
---|
| 78 | this.panel1.SuspendLayout();
|
---|
[6014] | 79 | this.panel2.SuspendLayout();
|
---|
[6010] | 80 | this.histoGramGroupBox.SuspendLayout();
|
---|
[6014] | 81 | this.panel3.SuspendLayout();
|
---|
[6012] | 82 | this.lineChartGroupBox.SuspendLayout();
|
---|
| 83 | ((System.ComponentModel.ISupportInitialize)(this.lineWidthNumericUpDown)).BeginInit();
|
---|
[6010] | 84 | this.SuspendLayout();
|
---|
| 85 | //
|
---|
| 86 | // chartTypeComboBox
|
---|
| 87 | //
|
---|
| 88 | this.chartTypeComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
---|
| 89 | this.chartTypeComboBox.FormattingEnabled = true;
|
---|
[6012] | 90 | this.chartTypeComboBox.Location = new System.Drawing.Point(76, 19);
|
---|
[6010] | 91 | this.chartTypeComboBox.Name = "chartTypeComboBox";
|
---|
[6014] | 92 | this.chartTypeComboBox.Size = new System.Drawing.Size(224, 21);
|
---|
[6012] | 93 | this.chartTypeComboBox.TabIndex = 1;
|
---|
[6010] | 94 | this.chartTypeComboBox.SelectedValueChanged += new System.EventHandler(this.chartTypeComboBox_SelectedValueChanged);
|
---|
| 95 | //
|
---|
| 96 | // colorDialog
|
---|
| 97 | //
|
---|
| 98 | this.colorDialog.Color = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(255)))));
|
---|
| 99 | //
|
---|
| 100 | // colorButton
|
---|
| 101 | //
|
---|
| 102 | this.colorButton.BackColor = System.Drawing.SystemColors.Control;
|
---|
[6012] | 103 | this.colorButton.Location = new System.Drawing.Point(76, 46);
|
---|
[6010] | 104 | this.colorButton.Name = "colorButton";
|
---|
| 105 | this.colorButton.Size = new System.Drawing.Size(23, 23);
|
---|
[6012] | 106 | this.colorButton.TabIndex = 3;
|
---|
[6010] | 107 | this.colorButton.UseVisualStyleBackColor = false;
|
---|
| 108 | this.colorButton.Click += new System.EventHandler(this.colorButton_Click);
|
---|
| 109 | //
|
---|
| 110 | // startIndexZeroCheckBox
|
---|
| 111 | //
|
---|
| 112 | this.startIndexZeroCheckBox.AutoSize = true;
|
---|
| 113 | this.startIndexZeroCheckBox.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
|
---|
[6012] | 114 | this.startIndexZeroCheckBox.Location = new System.Drawing.Point(96, 46);
|
---|
[6010] | 115 | this.startIndexZeroCheckBox.Name = "startIndexZeroCheckBox";
|
---|
[6012] | 116 | this.startIndexZeroCheckBox.Size = new System.Drawing.Size(15, 14);
|
---|
[6010] | 117 | this.startIndexZeroCheckBox.TabIndex = 3;
|
---|
| 118 | this.startIndexZeroCheckBox.UseVisualStyleBackColor = true;
|
---|
| 119 | this.startIndexZeroCheckBox.CheckedChanged += new System.EventHandler(this.startIndexZeroCheckBox_CheckedChanged);
|
---|
| 120 | //
|
---|
| 121 | // binsNumericUpDown
|
---|
| 122 | //
|
---|
[6012] | 123 | this.binsNumericUpDown.Location = new System.Drawing.Point(44, 19);
|
---|
| 124 | this.binsNumericUpDown.Minimum = new decimal(new int[] {
|
---|
| 125 | 1,
|
---|
| 126 | 0,
|
---|
| 127 | 0,
|
---|
| 128 | 0});
|
---|
[6010] | 129 | this.binsNumericUpDown.Name = "binsNumericUpDown";
|
---|
[6012] | 130 | this.binsNumericUpDown.Size = new System.Drawing.Size(96, 20);
|
---|
| 131 | this.binsNumericUpDown.TabIndex = 1;
|
---|
| 132 | this.binsNumericUpDown.Value = new decimal(new int[] {
|
---|
| 133 | 1,
|
---|
| 134 | 0,
|
---|
| 135 | 0,
|
---|
| 136 | 0});
|
---|
[6010] | 137 | this.binsNumericUpDown.ValueChanged += new System.EventHandler(this.binsNumericUpDown_ValueChanged);
|
---|
| 138 | //
|
---|
| 139 | // label1
|
---|
| 140 | //
|
---|
| 141 | this.label1.AutoSize = true;
|
---|
[6012] | 142 | this.label1.Location = new System.Drawing.Point(8, 22);
|
---|
[6010] | 143 | this.label1.Name = "label1";
|
---|
| 144 | this.label1.Size = new System.Drawing.Size(62, 13);
|
---|
[6012] | 145 | this.label1.TabIndex = 0;
|
---|
[6010] | 146 | this.label1.Text = "Chart Type:";
|
---|
| 147 | //
|
---|
| 148 | // label2
|
---|
| 149 | //
|
---|
| 150 | this.label2.AutoSize = true;
|
---|
[6012] | 151 | this.label2.Location = new System.Drawing.Point(8, 51);
|
---|
[6010] | 152 | this.label2.Name = "label2";
|
---|
| 153 | this.label2.Size = new System.Drawing.Size(34, 13);
|
---|
[6012] | 154 | this.label2.TabIndex = 2;
|
---|
[6010] | 155 | this.label2.Text = "Color:";
|
---|
| 156 | //
|
---|
| 157 | // label3
|
---|
| 158 | //
|
---|
| 159 | this.label3.AutoSize = true;
|
---|
| 160 | this.label3.Location = new System.Drawing.Point(8, 21);
|
---|
| 161 | this.label3.Name = "label3";
|
---|
| 162 | this.label3.Size = new System.Drawing.Size(30, 13);
|
---|
[6012] | 163 | this.label3.TabIndex = 0;
|
---|
[6010] | 164 | this.label3.Text = "Bins:";
|
---|
| 165 | //
|
---|
| 166 | // commonGroupBox
|
---|
| 167 | //
|
---|
| 168 | this.commonGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 169 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[6014] | 170 | this.commonGroupBox.Controls.Add(this.axisGroupBox);
|
---|
[6010] | 171 | this.commonGroupBox.Controls.Add(this.colorButton);
|
---|
| 172 | this.commonGroupBox.Controls.Add(this.label1);
|
---|
| 173 | this.commonGroupBox.Controls.Add(this.label2);
|
---|
| 174 | this.commonGroupBox.Controls.Add(this.chartTypeComboBox);
|
---|
| 175 | this.commonGroupBox.Location = new System.Drawing.Point(3, 3);
|
---|
| 176 | this.commonGroupBox.Name = "commonGroupBox";
|
---|
[6014] | 177 | this.commonGroupBox.Size = new System.Drawing.Size(313, 158);
|
---|
[6012] | 178 | this.commonGroupBox.TabIndex = 0;
|
---|
[6010] | 179 | this.commonGroupBox.TabStop = false;
|
---|
| 180 | this.commonGroupBox.Text = "Common";
|
---|
| 181 | //
|
---|
[6016] | 182 | // axisGroupBox
|
---|
[6014] | 183 | //
|
---|
[6016] | 184 | this.axisGroupBox.Controls.Add(this.label5);
|
---|
| 185 | this.axisGroupBox.Controls.Add(this.label6);
|
---|
| 186 | this.axisGroupBox.Controls.Add(this.panel1);
|
---|
| 187 | this.axisGroupBox.Controls.Add(this.panel2);
|
---|
| 188 | this.axisGroupBox.Location = new System.Drawing.Point(6, 75);
|
---|
| 189 | this.axisGroupBox.Name = "axisGroupBox";
|
---|
| 190 | this.axisGroupBox.Size = new System.Drawing.Size(299, 75);
|
---|
| 191 | this.axisGroupBox.TabIndex = 9;
|
---|
| 192 | this.axisGroupBox.TabStop = false;
|
---|
| 193 | this.axisGroupBox.Text = "Display Data on";
|
---|
[6014] | 194 | //
|
---|
[6016] | 195 | // label5
|
---|
[6014] | 196 | //
|
---|
[6016] | 197 | this.label5.AutoSize = true;
|
---|
| 198 | this.label5.Location = new System.Drawing.Point(6, 46);
|
---|
| 199 | this.label5.Name = "label5";
|
---|
| 200 | this.label5.Size = new System.Drawing.Size(39, 13);
|
---|
| 201 | this.label5.TabIndex = 6;
|
---|
| 202 | this.label5.Text = "Y Axis:";
|
---|
[6014] | 203 | //
|
---|
[6016] | 204 | // label6
|
---|
[6012] | 205 | //
|
---|
[6016] | 206 | this.label6.AutoSize = true;
|
---|
| 207 | this.label6.Location = new System.Drawing.Point(6, 22);
|
---|
| 208 | this.label6.Name = "label6";
|
---|
| 209 | this.label6.Size = new System.Drawing.Size(39, 13);
|
---|
| 210 | this.label6.TabIndex = 6;
|
---|
| 211 | this.label6.Text = "X Axis:";
|
---|
[6012] | 212 | //
|
---|
[6014] | 213 | // panel1
|
---|
| 214 | //
|
---|
| 215 | this.panel1.Controls.Add(this.yAxisSecondaryRadioButton);
|
---|
| 216 | this.panel1.Controls.Add(this.yAxisPrimaryRadioButton);
|
---|
| 217 | this.panel1.Location = new System.Drawing.Point(63, 40);
|
---|
| 218 | this.panel1.Name = "panel1";
|
---|
| 219 | this.panel1.Size = new System.Drawing.Size(231, 25);
|
---|
| 220 | this.panel1.TabIndex = 5;
|
---|
| 221 | //
|
---|
[6012] | 222 | // yAxisSecondaryRadioButton
|
---|
| 223 | //
|
---|
| 224 | this.yAxisSecondaryRadioButton.AutoSize = true;
|
---|
[6014] | 225 | this.yAxisSecondaryRadioButton.Location = new System.Drawing.Point(70, 4);
|
---|
[6012] | 226 | this.yAxisSecondaryRadioButton.Name = "yAxisSecondaryRadioButton";
|
---|
| 227 | this.yAxisSecondaryRadioButton.Size = new System.Drawing.Size(76, 17);
|
---|
| 228 | this.yAxisSecondaryRadioButton.TabIndex = 1;
|
---|
| 229 | this.yAxisSecondaryRadioButton.TabStop = true;
|
---|
| 230 | this.yAxisSecondaryRadioButton.Text = "Secondary";
|
---|
| 231 | this.yAxisSecondaryRadioButton.UseVisualStyleBackColor = true;
|
---|
| 232 | this.yAxisSecondaryRadioButton.CheckedChanged += new System.EventHandler(this.yAxisRadioButton_CheckedChanged);
|
---|
| 233 | //
|
---|
| 234 | // yAxisPrimaryRadioButton
|
---|
| 235 | //
|
---|
| 236 | this.yAxisPrimaryRadioButton.AutoSize = true;
|
---|
[6014] | 237 | this.yAxisPrimaryRadioButton.Location = new System.Drawing.Point(4, 4);
|
---|
[6012] | 238 | this.yAxisPrimaryRadioButton.Name = "yAxisPrimaryRadioButton";
|
---|
| 239 | this.yAxisPrimaryRadioButton.Size = new System.Drawing.Size(59, 17);
|
---|
| 240 | this.yAxisPrimaryRadioButton.TabIndex = 0;
|
---|
| 241 | this.yAxisPrimaryRadioButton.TabStop = true;
|
---|
| 242 | this.yAxisPrimaryRadioButton.Text = "Primary";
|
---|
| 243 | this.yAxisPrimaryRadioButton.UseVisualStyleBackColor = true;
|
---|
| 244 | this.yAxisPrimaryRadioButton.CheckedChanged += new System.EventHandler(this.yAxisRadioButton_CheckedChanged);
|
---|
| 245 | //
|
---|
[6016] | 246 | // panel2
|
---|
[6012] | 247 | //
|
---|
[6016] | 248 | this.panel2.Controls.Add(this.xAxisPrimaryRadioButton);
|
---|
| 249 | this.panel2.Controls.Add(this.xAxisSecondaryRadioButton);
|
---|
| 250 | this.panel2.Location = new System.Drawing.Point(63, 16);
|
---|
| 251 | this.panel2.Name = "panel2";
|
---|
| 252 | this.panel2.Size = new System.Drawing.Size(231, 25);
|
---|
| 253 | this.panel2.TabIndex = 7;
|
---|
[6012] | 254 | //
|
---|
[6016] | 255 | // xAxisPrimaryRadioButton
|
---|
| 256 | //
|
---|
| 257 | this.xAxisPrimaryRadioButton.AutoSize = true;
|
---|
| 258 | this.xAxisPrimaryRadioButton.Location = new System.Drawing.Point(4, 4);
|
---|
| 259 | this.xAxisPrimaryRadioButton.Name = "xAxisPrimaryRadioButton";
|
---|
| 260 | this.xAxisPrimaryRadioButton.Size = new System.Drawing.Size(59, 17);
|
---|
| 261 | this.xAxisPrimaryRadioButton.TabIndex = 0;
|
---|
| 262 | this.xAxisPrimaryRadioButton.TabStop = true;
|
---|
| 263 | this.xAxisPrimaryRadioButton.Text = "Primary";
|
---|
| 264 | this.xAxisPrimaryRadioButton.UseVisualStyleBackColor = true;
|
---|
| 265 | this.xAxisPrimaryRadioButton.CheckedChanged += new System.EventHandler(this.xAxisRadioButton_CheckedChanged);
|
---|
| 266 | //
|
---|
| 267 | // xAxisSecondaryRadioButton
|
---|
| 268 | //
|
---|
| 269 | this.xAxisSecondaryRadioButton.AutoSize = true;
|
---|
| 270 | this.xAxisSecondaryRadioButton.Location = new System.Drawing.Point(70, 4);
|
---|
| 271 | this.xAxisSecondaryRadioButton.Name = "xAxisSecondaryRadioButton";
|
---|
| 272 | this.xAxisSecondaryRadioButton.Size = new System.Drawing.Size(76, 17);
|
---|
| 273 | this.xAxisSecondaryRadioButton.TabIndex = 1;
|
---|
| 274 | this.xAxisSecondaryRadioButton.TabStop = true;
|
---|
| 275 | this.xAxisSecondaryRadioButton.Text = "Secondary";
|
---|
| 276 | this.xAxisSecondaryRadioButton.UseVisualStyleBackColor = true;
|
---|
| 277 | this.xAxisSecondaryRadioButton.CheckedChanged += new System.EventHandler(this.xAxisRadioButton_CheckedChanged);
|
---|
| 278 | //
|
---|
[6010] | 279 | // histoGramGroupBox
|
---|
| 280 | //
|
---|
| 281 | this.histoGramGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 282 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[6012] | 283 | this.histoGramGroupBox.Controls.Add(this.panel3);
|
---|
[6010] | 284 | this.histoGramGroupBox.Controls.Add(this.binsNumericUpDown);
|
---|
| 285 | this.histoGramGroupBox.Controls.Add(this.label3);
|
---|
[6014] | 286 | this.histoGramGroupBox.Location = new System.Drawing.Point(3, 269);
|
---|
[6010] | 287 | this.histoGramGroupBox.Name = "histoGramGroupBox";
|
---|
[6014] | 288 | this.histoGramGroupBox.Size = new System.Drawing.Size(313, 49);
|
---|
[6012] | 289 | this.histoGramGroupBox.TabIndex = 2;
|
---|
[6010] | 290 | this.histoGramGroupBox.TabStop = false;
|
---|
| 291 | this.histoGramGroupBox.Text = "Histogram";
|
---|
| 292 | //
|
---|
[6014] | 293 | // panel3
|
---|
| 294 | //
|
---|
| 295 | this.panel3.Controls.Add(this.binsApproximatelyRadioButton);
|
---|
| 296 | this.panel3.Controls.Add(this.binsExactRadioButton);
|
---|
| 297 | this.panel3.Location = new System.Drawing.Point(146, 16);
|
---|
| 298 | this.panel3.Name = "panel3";
|
---|
| 299 | this.panel3.Size = new System.Drawing.Size(154, 25);
|
---|
| 300 | this.panel3.TabIndex = 2;
|
---|
| 301 | //
|
---|
| 302 | // binsApproximatelyRadioButton
|
---|
| 303 | //
|
---|
| 304 | this.binsApproximatelyRadioButton.AutoSize = true;
|
---|
| 305 | this.binsApproximatelyRadioButton.Location = new System.Drawing.Point(4, 4);
|
---|
| 306 | this.binsApproximatelyRadioButton.Name = "binsApproximatelyRadioButton";
|
---|
| 307 | this.binsApproximatelyRadioButton.Size = new System.Drawing.Size(90, 17);
|
---|
| 308 | this.binsApproximatelyRadioButton.TabIndex = 0;
|
---|
| 309 | this.binsApproximatelyRadioButton.TabStop = true;
|
---|
| 310 | this.binsApproximatelyRadioButton.Text = "Approximately";
|
---|
| 311 | this.binsApproximatelyRadioButton.UseVisualStyleBackColor = true;
|
---|
[6016] | 312 | this.binsApproximatelyRadioButton.CheckedChanged += new System.EventHandler(this.binNumberRadioButton_CheckedChanged);
|
---|
[6014] | 313 | //
|
---|
| 314 | // binsExactRadioButton
|
---|
| 315 | //
|
---|
| 316 | this.binsExactRadioButton.AutoSize = true;
|
---|
| 317 | this.binsExactRadioButton.Location = new System.Drawing.Point(100, 4);
|
---|
| 318 | this.binsExactRadioButton.Name = "binsExactRadioButton";
|
---|
| 319 | this.binsExactRadioButton.Size = new System.Drawing.Size(52, 17);
|
---|
| 320 | this.binsExactRadioButton.TabIndex = 1;
|
---|
| 321 | this.binsExactRadioButton.TabStop = true;
|
---|
| 322 | this.binsExactRadioButton.Text = "Exact";
|
---|
| 323 | this.binsExactRadioButton.UseVisualStyleBackColor = true;
|
---|
[6016] | 324 | this.binsExactRadioButton.CheckedChanged += new System.EventHandler(this.binNumberRadioButton_CheckedChanged);
|
---|
[6014] | 325 | //
|
---|
[6012] | 326 | // lineChartGroupBox
|
---|
[6011] | 327 | //
|
---|
[6014] | 328 | this.lineChartGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 329 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[6012] | 330 | this.lineChartGroupBox.Controls.Add(this.lineWidthNumericUpDown);
|
---|
| 331 | this.lineChartGroupBox.Controls.Add(this.label4);
|
---|
| 332 | this.lineChartGroupBox.Controls.Add(this.startIndexZeroCheckBox);
|
---|
| 333 | this.lineChartGroupBox.Controls.Add(this.label7);
|
---|
| 334 | this.lineChartGroupBox.Controls.Add(this.lineStyleComboBox);
|
---|
| 335 | this.lineChartGroupBox.Controls.Add(this.label8);
|
---|
[6014] | 336 | this.lineChartGroupBox.Location = new System.Drawing.Point(3, 167);
|
---|
[6012] | 337 | this.lineChartGroupBox.Name = "lineChartGroupBox";
|
---|
[6014] | 338 | this.lineChartGroupBox.Size = new System.Drawing.Size(313, 96);
|
---|
[6012] | 339 | this.lineChartGroupBox.TabIndex = 1;
|
---|
| 340 | this.lineChartGroupBox.TabStop = false;
|
---|
| 341 | this.lineChartGroupBox.Text = "Line Chart";
|
---|
[6011] | 342 | //
|
---|
[6012] | 343 | // lineWidthNumericUpDown
|
---|
| 344 | //
|
---|
| 345 | this.lineWidthNumericUpDown.Location = new System.Drawing.Point(96, 66);
|
---|
| 346 | this.lineWidthNumericUpDown.Minimum = new decimal(new int[] {
|
---|
| 347 | 1,
|
---|
| 348 | 0,
|
---|
| 349 | 0,
|
---|
| 350 | 0});
|
---|
| 351 | this.lineWidthNumericUpDown.Name = "lineWidthNumericUpDown";
|
---|
| 352 | this.lineWidthNumericUpDown.Size = new System.Drawing.Size(65, 20);
|
---|
| 353 | this.lineWidthNumericUpDown.TabIndex = 5;
|
---|
| 354 | this.lineWidthNumericUpDown.Value = new decimal(new int[] {
|
---|
| 355 | 1,
|
---|
| 356 | 0,
|
---|
| 357 | 0,
|
---|
| 358 | 0});
|
---|
| 359 | this.lineWidthNumericUpDown.ValueChanged += new System.EventHandler(this.lineWidthNumericUpDown_ValueChanged);
|
---|
| 360 | //
|
---|
| 361 | // label4
|
---|
| 362 | //
|
---|
| 363 | this.label4.AutoSize = true;
|
---|
| 364 | this.label4.Location = new System.Drawing.Point(8, 68);
|
---|
| 365 | this.label4.Name = "label4";
|
---|
| 366 | this.label4.Size = new System.Drawing.Size(61, 13);
|
---|
| 367 | this.label4.TabIndex = 4;
|
---|
| 368 | this.label4.Text = "Line Width:";
|
---|
| 369 | //
|
---|
| 370 | // label7
|
---|
| 371 | //
|
---|
| 372 | this.label7.AutoSize = true;
|
---|
| 373 | this.label7.Location = new System.Drawing.Point(8, 46);
|
---|
| 374 | this.label7.Name = "label7";
|
---|
| 375 | this.label7.Size = new System.Drawing.Size(82, 13);
|
---|
| 376 | this.label7.TabIndex = 2;
|
---|
| 377 | this.label7.Text = "Start Index at 0:";
|
---|
| 378 | //
|
---|
| 379 | // lineStyleComboBox
|
---|
| 380 | //
|
---|
| 381 | this.lineStyleComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
---|
| 382 | this.lineStyleComboBox.FormattingEnabled = true;
|
---|
| 383 | this.lineStyleComboBox.Location = new System.Drawing.Point(96, 19);
|
---|
| 384 | this.lineStyleComboBox.Name = "lineStyleComboBox";
|
---|
[6014] | 385 | this.lineStyleComboBox.Size = new System.Drawing.Size(204, 21);
|
---|
[6012] | 386 | this.lineStyleComboBox.TabIndex = 1;
|
---|
| 387 | this.lineStyleComboBox.SelectedValueChanged += new System.EventHandler(this.lineStyleComboBox_SelectedValueChanged);
|
---|
| 388 | //
|
---|
| 389 | // label8
|
---|
| 390 | //
|
---|
| 391 | this.label8.AutoSize = true;
|
---|
| 392 | this.label8.Location = new System.Drawing.Point(8, 22);
|
---|
| 393 | this.label8.Name = "label8";
|
---|
| 394 | this.label8.Size = new System.Drawing.Size(56, 13);
|
---|
| 395 | this.label8.TabIndex = 0;
|
---|
| 396 | this.label8.Text = "Line Style:";
|
---|
| 397 | //
|
---|
[6010] | 398 | // DataRowVisualPropertiesControl
|
---|
| 399 | //
|
---|
| 400 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 401 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
[6012] | 402 | this.Controls.Add(this.lineChartGroupBox);
|
---|
[6010] | 403 | this.Controls.Add(this.histoGramGroupBox);
|
---|
| 404 | this.Controls.Add(this.commonGroupBox);
|
---|
| 405 | this.Name = "DataRowVisualPropertiesControl";
|
---|
[6014] | 406 | this.Size = new System.Drawing.Size(319, 323);
|
---|
[6010] | 407 | ((System.ComponentModel.ISupportInitialize)(this.binsNumericUpDown)).EndInit();
|
---|
| 408 | this.commonGroupBox.ResumeLayout(false);
|
---|
| 409 | this.commonGroupBox.PerformLayout();
|
---|
[6016] | 410 | this.axisGroupBox.ResumeLayout(false);
|
---|
| 411 | this.axisGroupBox.PerformLayout();
|
---|
| 412 | this.panel1.ResumeLayout(false);
|
---|
| 413 | this.panel1.PerformLayout();
|
---|
[6014] | 414 | this.panel2.ResumeLayout(false);
|
---|
| 415 | this.panel2.PerformLayout();
|
---|
[6010] | 416 | this.histoGramGroupBox.ResumeLayout(false);
|
---|
| 417 | this.histoGramGroupBox.PerformLayout();
|
---|
[6014] | 418 | this.panel3.ResumeLayout(false);
|
---|
| 419 | this.panel3.PerformLayout();
|
---|
[6012] | 420 | this.lineChartGroupBox.ResumeLayout(false);
|
---|
| 421 | this.lineChartGroupBox.PerformLayout();
|
---|
| 422 | ((System.ComponentModel.ISupportInitialize)(this.lineWidthNumericUpDown)).EndInit();
|
---|
[6010] | 423 | this.ResumeLayout(false);
|
---|
| 424 |
|
---|
| 425 | }
|
---|
| 426 |
|
---|
| 427 | #endregion
|
---|
| 428 |
|
---|
| 429 | private System.Windows.Forms.ComboBox chartTypeComboBox;
|
---|
| 430 | private System.Windows.Forms.ColorDialog colorDialog;
|
---|
| 431 | private System.Windows.Forms.Button colorButton;
|
---|
| 432 | private System.Windows.Forms.CheckBox startIndexZeroCheckBox;
|
---|
| 433 | private System.Windows.Forms.NumericUpDown binsNumericUpDown;
|
---|
| 434 | private System.Windows.Forms.Label label1;
|
---|
| 435 | private System.Windows.Forms.Label label2;
|
---|
| 436 | private System.Windows.Forms.Label label3;
|
---|
| 437 | private System.Windows.Forms.GroupBox commonGroupBox;
|
---|
| 438 | private System.Windows.Forms.GroupBox histoGramGroupBox;
|
---|
[6012] | 439 | private System.Windows.Forms.RadioButton xAxisSecondaryRadioButton;
|
---|
| 440 | private System.Windows.Forms.RadioButton yAxisSecondaryRadioButton;
|
---|
| 441 | private System.Windows.Forms.RadioButton xAxisPrimaryRadioButton;
|
---|
| 442 | private System.Windows.Forms.RadioButton yAxisPrimaryRadioButton;
|
---|
| 443 | private System.Windows.Forms.Label label6;
|
---|
| 444 | private System.Windows.Forms.GroupBox lineChartGroupBox;
|
---|
| 445 | private System.Windows.Forms.NumericUpDown lineWidthNumericUpDown;
|
---|
| 446 | private System.Windows.Forms.Label label4;
|
---|
| 447 | private System.Windows.Forms.Label label7;
|
---|
| 448 | private System.Windows.Forms.RadioButton binsExactRadioButton;
|
---|
| 449 | private System.Windows.Forms.RadioButton binsApproximatelyRadioButton;
|
---|
| 450 | private System.Windows.Forms.Panel panel2;
|
---|
| 451 | private System.Windows.Forms.Panel panel1;
|
---|
| 452 | private System.Windows.Forms.Panel panel3;
|
---|
| 453 | private System.Windows.Forms.ComboBox lineStyleComboBox;
|
---|
| 454 | private System.Windows.Forms.Label label8;
|
---|
[6014] | 455 | private System.Windows.Forms.Label label5;
|
---|
| 456 | private System.Windows.Forms.GroupBox axisGroupBox;
|
---|
[6010] | 457 | }
|
---|
| 458 | }
|
---|