Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/23/16 22:51:27 (8 years ago)
Author:
abeham
Message:

#2457:

  • Renamed remaining files from ExpertSystem to KnowledgeCenter
  • Added ability to scatter plot to display a regression line
  • Allowed to execute multiple instances at once and displaying either only final result or tracking result
  • Split runs in seeded runs and instance runs
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PerformanceComparison/HeuristicLab.Analysis/3.3/DataVisualization/ScatterPlotDataRowVisualProperties.cs

    r12012 r13722  
    2020#endregion
    2121
     22using HeuristicLab.Common;
     23using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2224using System;
    2325using System.ComponentModel;
    2426using System.Drawing;
    25 using HeuristicLab.Common;
    26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2727
    2828namespace HeuristicLab.Analysis {
     
    101101      }
    102102    }
     103    private bool showRegressionLine;
     104    public bool ShowRegressionLine {
     105      get { return showRegressionLine; }
     106      set {
     107        if (showRegressionLine == value) return;
     108        showRegressionLine = value;
     109        OnPropertyChanged("ShowRegressionLine");
     110      }
     111    }
    103112
    104113    #region Persistence Properties
     
    128137      set { displayName = value; }
    129138    }
     139    [Storable(Name = "ShowRegressionLine")]
     140    private bool StorableShowRegressionLine {
     141      get { return showRegressionLine; }
     142      set { showRegressionLine = value; }
     143    }
    130144    #endregion
    131145
     
    139153      this.displayName = original.displayName;
    140154      this.isVisibleInLegend = original.isVisibleInLegend;
     155      this.showRegressionLine = original.showRegressionLine;
    141156    }
    142157    public ScatterPlotDataRowVisualProperties() {
     
    146161      displayName = String.Empty;
    147162      isVisibleInLegend = true;
     163      showRegressionLine = false;
    148164    }
    149165    public ScatterPlotDataRowVisualProperties(string displayName)
Note: See TracChangeset for help on using the changeset viewer.