Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/21/14 12:48:42 (10 years ago)
Author:
mleitner
Message:

Persist Histogram classification setting, disable legend for histogram

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/HistogramContent.cs

    r10771 r10871  
    2828  public class HistogramContent : PreprocessingChartContent {
    2929
     30    private int classifierVariableIndex = 0;
     31
    3032    public HistogramContent(IChartLogic chartlogic) :base(chartlogic) {
     33      AllInOneMode = false;
    3134    }
    3235
     
    3538
    3639    }
     40
     41    public int ClassifierVariableIndex
     42    {
     43      get { return this.classifierVariableIndex; }
     44      set { this.classifierVariableIndex = value; }
     45    }
     46
    3747
    3848    public static new Image StaticItemImage {
Note: See TracChangeset for help on using the changeset viewer.