Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/01/17 17:43:19 (7 years ago)
Author:
pfleck
Message:

#2709

  • New Icons for Check All, Inputs&Target, None.png
  • Smaller titlefont for histograms.
  • Changed warning for multiscatterplot.
Location:
branches/DataPreprocessing Enhancements/HeuristicLab.DataPreprocessing.Views/3.4
Files:
5 edited

Legend:

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

    r14996 r15021  
    2121
    2222using System;
     23using System.Drawing;
    2324using HeuristicLab.Analysis;
    2425using HeuristicLab.MainForm;
     
    5758    protected override DataTable CreateDataTable(string variableName) {
    5859      var aggregation = (DataRowVisualProperties.DataRowHistogramAggregation)aggregationComboBox.SelectedItem;
    59       return HistogramContent.CreateHistogram(Content.PreprocessingData, variableName, Content.GroupingVariableName, aggregation, Content.Order);
     60      var hist = HistogramContent.CreateHistogram(Content.PreprocessingData, variableName, Content.GroupingVariableName, aggregation, Content.Order);
     61      hist.VisualProperties.TitleFont = new Font(DefaultFont.FontFamily, 10, FontStyle.Bold);
     62      return hist;
    6063    }
    6164
  • branches/DataPreprocessing Enhancements/HeuristicLab.DataPreprocessing.Views/3.4/ScatterPlotMultiView.cs

    r14996 r15021  
    9696        int numChecked = list.CheckedItems.Count();
    9797        if (numChecked > 20) {
    98           string message = string.Format("Displaying {0} variables ({1} charts) can cause HeuristicLab to become instable. " +
     98          string message = string.Format("Displaying {0} variables ({1} charts) can slown down HeuristicLab. " +
    9999                                         "Should the number of initially checked variables be reduced to 20?",
    100100            numChecked, numChecked * numChecked);
Note: See TracChangeset for help on using the changeset viewer.