Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/29/17 15:18:12 (7 years ago)
Author:
pfleck
Message:

#2709 Adapted to recent trunk changes (r15068)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing Enhancements/HeuristicLab.DataPreprocessing/3.4/Content/HistogramContent.cs

    r15036 r15090  
    5454    }
    5555
    56     public static DataTable CreateHistogram(IFilteredPreprocessingData preprocessingData, string variableName, string groupingVariableName, DataRowVisualProperties.DataRowHistogramAggregation aggregation, LegendOrder legendOrder = LegendOrder.Appearance) {
     56    public static DataTable CreateHistogram(IFilteredPreprocessingData preprocessingData, string variableName, string groupingVariableName, DataTableVisualProperties.DataTableHistogramAggregation aggregation, LegendOrder legendOrder = LegendOrder.Appearance) {
    5757      var dataTable = new DataTable {
    58         VisualProperties = { Title = variableName }
     58        VisualProperties = { Title = variableName, HistogramAggregation = aggregation },
    5959      };
    6060
     
    8989          VisualProperties = {
    9090              ChartType = DataRowVisualProperties.DataRowChartType.Histogram,
    91               Aggregation = aggregation,
    9291              IsVisibleInLegend = !string.IsNullOrEmpty(groupingVariableName)
    9392            }
Note: See TracChangeset for help on using the changeset viewer.