Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/21/16 11:26:54 (7 years ago)
Author:
pfleck
Message:

#2709

  • Added a VerticalLabel for the multi-scatterplot.
  • Added regression options for single- and multi-scatterplot
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing Enhancements/HeuristicLab.DataPreprocessing.Views/3.4/ScatterPlotMultiView.Designer.cs

    r14511 r14514  
    5757      this.heightTrackBar = new System.Windows.Forms.TrackBar();
    5858      this.widthTrackBar = new System.Windows.Forms.TrackBar();
     59      this.regressionGroupBox = new System.Windows.Forms.GroupBox();
     60      this.regressionTypeComboBox = new System.Windows.Forms.ComboBox();
     61      this.polynomialRegressionOrderNumericUpDown = new System.Windows.Forms.NumericUpDown();
     62      this.orderLabel = new System.Windows.Forms.Label();
     63      this.label4 = new System.Windows.Forms.Label();
    5964      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
    6065      this.splitContainer.Panel1.SuspendLayout();
     
    6873      ((System.ComponentModel.ISupportInitialize)(this.heightTrackBar)).BeginInit();
    6974      ((System.ComponentModel.ISupportInitialize)(this.widthTrackBar)).BeginInit();
     75      this.regressionGroupBox.SuspendLayout();
     76      ((System.ComponentModel.ISupportInitialize)(this.polynomialRegressionOrderNumericUpDown)).BeginInit();
    7077      this.SuspendLayout();
    7178      //
     
    7683      //
    7784      this.splitContainer.Panel1.Controls.Add(this.sizeGroupBox);
     85      this.splitContainer.Panel1.Controls.Add(this.regressionGroupBox);
    7886      //
    7987      // splitContainer.Panel2
     
    187195      this.sizeGroupBox.Controls.Add(this.widthTrackBar);
    188196      this.sizeGroupBox.Dock = System.Windows.Forms.DockStyle.Bottom;
    189       this.sizeGroupBox.Location = new System.Drawing.Point(0, 267);
     197      this.sizeGroupBox.Location = new System.Drawing.Point(0, 198);
    190198      this.sizeGroupBox.Name = "sizeGroupBox";
    191       this.sizeGroupBox.Size = new System.Drawing.Size(180, 136);
     199      this.sizeGroupBox.Size = new System.Drawing.Size(180, 130);
    192200      this.sizeGroupBox.TabIndex = 5;
    193201      this.sizeGroupBox.TabStop = false;
     
    241249      this.widthTrackBar.Value = 20;
    242250      this.widthTrackBar.ValueChanged += new System.EventHandler(this.widthTrackBar_ValueChanged);
     251      //
     252      // regressionGroupBox
     253      //
     254      this.regressionGroupBox.Controls.Add(this.regressionTypeComboBox);
     255      this.regressionGroupBox.Controls.Add(this.polynomialRegressionOrderNumericUpDown);
     256      this.regressionGroupBox.Controls.Add(this.orderLabel);
     257      this.regressionGroupBox.Controls.Add(this.label4);
     258      this.regressionGroupBox.Dock = System.Windows.Forms.DockStyle.Bottom;
     259      this.regressionGroupBox.Location = new System.Drawing.Point(0, 328);
     260      this.regressionGroupBox.Name = "regressionGroupBox";
     261      this.regressionGroupBox.Size = new System.Drawing.Size(180, 75);
     262      this.regressionGroupBox.TabIndex = 3;
     263      this.regressionGroupBox.TabStop = false;
     264      this.regressionGroupBox.Text = "Regression";
     265      //
     266      // regressionTypeComboBox
     267      //
     268      this.regressionTypeComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     269            | System.Windows.Forms.AnchorStyles.Right)));
     270      this.regressionTypeComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     271      this.regressionTypeComboBox.FormattingEnabled = true;
     272      this.regressionTypeComboBox.Location = new System.Drawing.Point(67, 19);
     273      this.regressionTypeComboBox.Name = "regressionTypeComboBox";
     274      this.regressionTypeComboBox.Size = new System.Drawing.Size(107, 21);
     275      this.regressionTypeComboBox.TabIndex = 14;
     276      this.regressionTypeComboBox.SelectedValueChanged += new System.EventHandler(this.regressionTypeComboBox_SelectedValueChanged);
     277      //
     278      // polynomialRegressionOrderNumericUpDown
     279      //
     280      this.polynomialRegressionOrderNumericUpDown.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     281            | System.Windows.Forms.AnchorStyles.Right)));
     282      this.polynomialRegressionOrderNumericUpDown.Location = new System.Drawing.Point(67, 45);
     283      this.polynomialRegressionOrderNumericUpDown.Margin = new System.Windows.Forms.Padding(9, 3, 3, 3);
     284      this.polynomialRegressionOrderNumericUpDown.Maximum = new decimal(new int[] {
     285            6,
     286            0,
     287            0,
     288            0});
     289      this.polynomialRegressionOrderNumericUpDown.Minimum = new decimal(new int[] {
     290            2,
     291            0,
     292            0,
     293            0});
     294      this.polynomialRegressionOrderNumericUpDown.Name = "polynomialRegressionOrderNumericUpDown";
     295      this.polynomialRegressionOrderNumericUpDown.Size = new System.Drawing.Size(107, 20);
     296      this.polynomialRegressionOrderNumericUpDown.TabIndex = 15;
     297      this.polynomialRegressionOrderNumericUpDown.Value = new decimal(new int[] {
     298            2,
     299            0,
     300            0,
     301            0});
     302      this.polynomialRegressionOrderNumericUpDown.ValueChanged += new System.EventHandler(this.polynomialRegressionOrderNumericUpDown_ValueChanged);
     303      //
     304      // orderLabel
     305      //
     306      this.orderLabel.AutoSize = true;
     307      this.orderLabel.Location = new System.Drawing.Point(6, 47);
     308      this.orderLabel.Name = "orderLabel";
     309      this.orderLabel.Size = new System.Drawing.Size(36, 13);
     310      this.orderLabel.TabIndex = 16;
     311      this.orderLabel.Text = "Order:";
     312      //
     313      // label4
     314      //
     315      this.label4.AutoSize = true;
     316      this.label4.Location = new System.Drawing.Point(6, 22);
     317      this.label4.Name = "label4";
     318      this.label4.Size = new System.Drawing.Size(34, 13);
     319      this.label4.TabIndex = 13;
     320      this.label4.Text = "Type:";
    243321      //
    244322      // ScatterPlotMultiView
     
    262340      ((System.ComponentModel.ISupportInitialize)(this.heightTrackBar)).EndInit();
    263341      ((System.ComponentModel.ISupportInitialize)(this.widthTrackBar)).EndInit();
     342      this.regressionGroupBox.ResumeLayout(false);
     343      this.regressionGroupBox.PerformLayout();
     344      ((System.ComponentModel.ISupportInitialize)(this.polynomialRegressionOrderNumericUpDown)).EndInit();
    264345      this.ResumeLayout(false);
    265346
     
    280361    private System.Windows.Forms.Label heightLabel;
    281362    private System.Windows.Forms.Label widthLabel;
     363    private System.Windows.Forms.GroupBox regressionGroupBox;
     364    private System.Windows.Forms.ComboBox regressionTypeComboBox;
     365    private System.Windows.Forms.NumericUpDown polynomialRegressionOrderNumericUpDown;
     366    private System.Windows.Forms.Label orderLabel;
     367    private System.Windows.Forms.Label label4;
    282368  }
    283369}
Note: See TracChangeset for help on using the changeset viewer.