- Timestamp:
- 06/29/17 15:18:12 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing Enhancements/HeuristicLab.DataPreprocessing/3.4/Content/HistogramContent.cs
r15036 r15090 54 54 } 55 55 56 public static DataTable CreateHistogram(IFilteredPreprocessingData preprocessingData, string variableName, string groupingVariableName, Data RowVisualProperties.DataRowHistogramAggregation aggregation, LegendOrder legendOrder = LegendOrder.Appearance) {56 public static DataTable CreateHistogram(IFilteredPreprocessingData preprocessingData, string variableName, string groupingVariableName, DataTableVisualProperties.DataTableHistogramAggregation aggregation, LegendOrder legendOrder = LegendOrder.Appearance) { 57 57 var dataTable = new DataTable { 58 VisualProperties = { Title = variableName }58 VisualProperties = { Title = variableName, HistogramAggregation = aggregation }, 59 59 }; 60 60 … … 89 89 VisualProperties = { 90 90 ChartType = DataRowVisualProperties.DataRowChartType.Histogram, 91 Aggregation = aggregation,92 91 IsVisibleInLegend = !string.IsNullOrEmpty(groupingVariableName) 93 92 }
Note: See TracChangeset
for help on using the changeset viewer.