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.Views/3.3/HistogramView.cs

    r10867 r10871  
    2424      {
    2525        logic = Content.ChartLogic;
    26         Content.AllInOneMode = false;
    27 
     26   
    2827        classifierComboBox.Items.Clear();
    2928
     
    3433        }
    3534
    36         if (classifierComboBox.SelectedIndex == -1) {
    37           classifierComboBox.SelectedIndex = 0;
     35        if (classifierComboBox.SelectedItem == null) {
     36         // classifierComboBox.SelectedIndex = 0;
     37
     38          classifierComboBox.SelectedIndex = Content.ClassifierVariableIndex;
    3839        }
    3940      }
     
    5960      }
    6061
     62      Content.ClassifierVariableIndex = classifierComboBox.SelectedIndex;
     63
    6164      GenerateChart();
    6265    }
Note: See TracChangeset for help on using the changeset viewer.