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