Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/11/17 18:43:17 (7 years ago)
Author:
gkronber
Message:

#2670 renamed TargetResponseCurve and GradientChart -> PartialDependencePlot

File:
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.4/Controls/PartialDependencePlot.cs

    r14851 r14852  
    3535
    3636namespace HeuristicLab.Problems.DataAnalysis.Views {
    37   public partial class GradientChart : UserControl, IGradientChart {
     37  public partial class PartialDependencePlot : UserControl, IPartialDependencePlot {
    3838    private ModifiableDataset sharedFixedVariables; // used for syncronising variable values between charts
    3939    private ModifiableDataset internalDataset; // holds the x values for each point drawn
     
    4646
    4747    private readonly ToolStripMenuItem configToolStripMenuItem;
    48     private readonly GradientChartConfigurationDialog configurationDialog;
     48    private readonly PartialDependencePlotConfigurationDialog configurationDialog;
    4949
    5050    #region Properties
     
    210210    public event EventHandler ChartPostPaint;
    211211
    212     public GradientChart() {
     212    public PartialDependencePlot() {
    213213      InitializeComponent();
    214214
     
    231231      chart.ContextMenuStrip.Items.Add(new ToolStripSeparator());
    232232      chart.ContextMenuStrip.Items.Add(configToolStripMenuItem);
    233       configurationDialog = new GradientChartConfigurationDialog(this);
    234 
    235       Disposed += GradientChart_Disposed;
    236     }
    237 
    238     private void GradientChart_Disposed(object sender, EventArgs e) {
     233      configurationDialog = new PartialDependencePlotConfigurationDialog(this);
     234
     235      Disposed += Control_Disposed;
     236    }
     237
     238    private void Control_Disposed(object sender, EventArgs e) {
    239239      if (cancelCurrentRecalculateSource != null)
    240240        cancelCurrentRecalculateSource.Cancel();
Note: See TracChangeset for help on using the changeset viewer.