Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/12/16 15:11:30 (8 years ago)
Author:
pfleck
Message:

#2597

  • Added a manual y-axis control.
  • Fixed bug with dragging the cursor in the GradientChart out of the chart.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.RegressionSolutionGradientView/HeuristicLab.Problems.DataAnalysis.Views/3.4/RegressionSolutionGradientView.cs

    r13842 r13846  
    2626using HeuristicLab.Collections;
    2727using HeuristicLab.MainForm;
     28using HeuristicLab.MainForm.WindowsForms;
    2829using HeuristicLab.Problems.DataAnalysis;
    2930using HeuristicLab.Problems.DataAnalysis.Views;
     
    7677      trackbars.Clear();
    7778
     79      tableLayoutPanel.SuspendRepaint();
     80      tableLayoutPanel.SuspendLayout();
     81
    7882      tableLayoutPanel.RowCount = 0;
    7983      tableLayoutPanel.Controls.Clear();
    8084
    81       if (Content == null) return;
     85      if (Content == null) {
     86        tableLayoutPanel.ResumeLayout(false);
     87        tableLayoutPanel.ResumeRepaint(false);
     88        return;
     89      }
    8290
    8391      variableNames.AddRange(Content.ProblemData.AllowedInputVariables);
     
    99107      }
    100108
     109      tableLayoutPanel.ResumeLayout(true);
     110      tableLayoutPanel.ResumeRepaint(true);
     111
    101112      trackbars.First().Checked = true;
    102113    }
Note: See TracChangeset for help on using the changeset viewer.