Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/19/17 16:56:34 (7 years ago)
Author:
pfleck
Message:

#2709

  • Used title for showing variable name in the histogram instead of the legend. Legend is now used for grouping only.
  • Fixed Variables/Datarows in StatisticsView (were switched).
  • Improved the "Warning Dialog" for the MultiScatterPlot when too many variables might be shown.
    • Option for checking "None".
    • Show the dialog before the charts are calculated internally.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing Enhancements/HeuristicLab.DataPreprocessing.Views/3.4/StatisticsView.cs

    r14996 r15036  
    8888    private void UpdateData(Dictionary<string, bool> oldVisibility = null) {
    8989      var logic = Content.StatisticsLogic;
    90       rowsTextBox.Text = logic.GetColumnCount().ToString();
    91       columnsTextBox.Text = logic.GetRowCount().ToString();
     90      rowsTextBox.Text = logic.GetRowCount().ToString();
     91      columnsTextBox.Text = logic.GetColumnCount().ToString();
    9292      numericColumnsTextBox.Text = logic.GetNumericColumnCount().ToString();
    9393      nominalColumnsTextBox5.Text = logic.GetNominalColumnCount().ToString();
Note: See TracChangeset for help on using the changeset viewer.