Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/12/16 20:32:07 (7 years ago)
Author:
gkronber
Message:

#2718: suggestion for residuals line chart

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.4/Regression/RegressionSolutionLineChartView.cs

    r14422 r14483  
    3232  [Content(typeof(IRegressionSolution))]
    3333  public partial class RegressionSolutionLineChartView : DataAnalysisSolutionEvaluationView {
    34     private const string TARGETVARIABLE_SERIES_NAME = "Target Variable";
    35     private const string ESTIMATEDVALUES_TRAINING_SERIES_NAME = "Estimated Values (training)";
    36     private const string ESTIMATEDVALUES_TEST_SERIES_NAME = "Estimated Values (test)";
    37     private const string ESTIMATEDVALUES_ALL_SERIES_NAME = "Estimated Values (all samples)";
     34    protected const string TARGETVARIABLE_SERIES_NAME = "Target Variable";
     35    protected const string ESTIMATEDVALUES_TRAINING_SERIES_NAME = "Estimated Values (training)";
     36    protected const string ESTIMATEDVALUES_TEST_SERIES_NAME = "Estimated Values (test)";
     37    protected const string ESTIMATEDVALUES_ALL_SERIES_NAME = "Estimated Values (all samples)";
    3838
    3939    public new IRegressionSolution Content {
     
    7373    }
    7474
    75     private void RedrawChart() {
     75    protected virtual void RedrawChart() {
    7676      this.chart.Series.Clear();
    7777      if (Content != null) {
Note: See TracChangeset for help on using the changeset viewer.