Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/22/16 16:36:59 (7 years ago)
Author:
pfleck
Message:

#2709

  • Added suggestion feature for singlescatterplotview.
  • Shows NaN groups in scatterplot (black if gradient is selected).
  • Only enables input variables in DataGridContentView per default.
  • Added missing resx file (gradient image).
File:
1 edited

Legend:

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

    r14521 r14525  
    6262      this.splitContainer1 = new System.Windows.Forms.SplitContainer();
    6363      this.gradientPanel = new System.Windows.Forms.Panel();
     64      this.gradientPictureBox = new System.Windows.Forms.PictureBox();
    6465      this.gradientMinimumLabel = new System.Windows.Forms.Label();
    6566      this.gradientMaximumLabel = new System.Windows.Forms.Label();
    66       this.gradientPictureBox = new System.Windows.Forms.PictureBox();
    6767      this.groupBox1.SuspendLayout();
    6868      this.regressionGroupBox.SuspendLayout();
     
    146146      this.comboBoxGroup.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
    147147            | System.Windows.Forms.AnchorStyles.Right)));
    148       this.comboBoxGroup.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     148      this.comboBoxGroup.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
     149      this.comboBoxGroup.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
    149150      this.comboBoxGroup.FormattingEnabled = true;
    150151      this.comboBoxGroup.Location = new System.Drawing.Point(51, 94);
     
    159160      this.comboBoxYVariable.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
    160161            | System.Windows.Forms.AnchorStyles.Right)));
    161       this.comboBoxYVariable.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     162      this.comboBoxYVariable.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
     163      this.comboBoxYVariable.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
    162164      this.comboBoxYVariable.FormattingEnabled = true;
    163165      this.comboBoxYVariable.Location = new System.Drawing.Point(51, 60);
     
    172174      this.comboBoxXVariable.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
    173175            | System.Windows.Forms.AnchorStyles.Right)));
    174       this.comboBoxXVariable.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     176      this.comboBoxXVariable.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
     177      this.comboBoxXVariable.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
    175178      this.comboBoxXVariable.FormattingEnabled = true;
    176179      this.comboBoxXVariable.Location = new System.Drawing.Point(51, 26);
     
    282285      this.gradientPanel.TabIndex = 1;
    283286      //
     287      // gradientPictureBox
     288      //
     289      this.gradientPictureBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     290            | System.Windows.Forms.AnchorStyles.Left)));
     291      this.gradientPictureBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     292      this.gradientPictureBox.Image = ((System.Drawing.Image)(resources.GetObject("gradientPictureBox.Image")));
     293      this.gradientPictureBox.Location = new System.Drawing.Point(17, 29);
     294      this.gradientPictureBox.Name = "gradientPictureBox";
     295      this.gradientPictureBox.Size = new System.Drawing.Size(35, 460);
     296      this.gradientPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     297      this.gradientPictureBox.TabIndex = 19;
     298      this.gradientPictureBox.TabStop = false;
     299      //
    284300      // gradientMinimumLabel
    285301      //
     
    303319      this.gradientMaximumLabel.Text = "1.0";
    304320      this.gradientMaximumLabel.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
    305       //
    306       // gradientPictureBox
    307       //
    308       this.gradientPictureBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
    309             | System.Windows.Forms.AnchorStyles.Left)));
    310       this.gradientPictureBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
    311       this.gradientPictureBox.Image = ((System.Drawing.Image)(resources.GetObject("GradientPictureBox.Image")));
    312       this.gradientPictureBox.Location = new System.Drawing.Point(17, 29);
    313       this.gradientPictureBox.Name = "gradientPictureBox";
    314       this.gradientPictureBox.Size = new System.Drawing.Size(35, 460);
    315       this.gradientPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
    316       this.gradientPictureBox.TabIndex = 19;
    317       this.gradientPictureBox.TabStop = false;
    318321      //
    319322      // ScatterPlotSingleView
Note: See TracChangeset for help on using the changeset viewer.