Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/09/15 18:18:22 (9 years ago)
Author:
ehopf
Message:

#2335: Added an option to display the missing value count within the Histogram view.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessingImprovements/HeuristicLab.DataPreprocessing.Views/3.4/HistogramView.cs

    r12012 r12169  
    7070
    7171      Content.ClassifierVariableIndex = classifierComboBox.SelectedIndex;
    72 
    73       GenerateChart();
     72      if (Content.IsDetailedChartViewEnabled != IsDetailedChartViewEnabled) {
     73        displayDetailsCheckBox.Checked = Content.IsDetailedChartViewEnabled;
     74      } else {
     75        GenerateChart();
     76      }
     77    }
     78    private void displayDetailsCheckBox_CheckedChanged(object sender, EventArgs e) {
     79      bool isChecked = displayDetailsCheckBox.Checked;
     80      if (IsDetailedChartViewEnabled != isChecked) {
     81        IsDetailedChartViewEnabled = isChecked;
     82        Content.IsDetailedChartViewEnabled = isChecked;
     83        GenerateChart();
     84      }
    7485    }
    7586  }
Note: See TracChangeset for help on using the changeset viewer.