Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/18/17 12:29:59 (7 years ago)
Author:
pfleck
Message:

#2709

  • Fixed initial selection of the grouping text box (empty string instead of null to select the first entry).
  • General code fixes (removed unnessecary bank lines and code, class member order, ...)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing Enhancements/HeuristicLab.DataPreprocessing/3.4/Content/LineChartContent.cs

    r14903 r14996  
    2828  [Item("Line Chart", "Represents the line chart grid.")]
    2929  public class LineChartContent : PreprocessingChartContent {
    30 
    31     private bool allInOneMode = true;
    32     public bool AllInOneMode {
    33       get { return this.allInOneMode; }
    34       set { this.allInOneMode = value; }
    35     }
     30    public bool AllInOneMode { get; set; }
    3631
    3732    public static new Image StaticItemImage {
     
    4136    public LineChartContent(IFilteredPreprocessingData preprocessingData)
    4237      : base(preprocessingData) {
     38      AllInOneMode = true;
    4339    }
    4440
    4541    public LineChartContent(LineChartContent content, Cloner cloner)
    4642      : base(content, cloner) {
    47       this.allInOneMode = content.allInOneMode;
     43      this.AllInOneMode = content.AllInOneMode;
    4844    }
    4945    public override IDeepCloneable Clone(Cloner cloner) {
Note: See TracChangeset for help on using the changeset viewer.