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.
File:
1 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
Note: See TracChangeset for help on using the changeset viewer.