Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/27/17 10:06:34 (7 years ago)
Author:
pfleck
Message:

#2715 Moved the histogram properties (nr of bins, exact/approximate bins, aggregation) from DataRowVisualProperties to DataTableVisualProperties

  • Adapted DataRow/TableVisualPropertiesControl
  • Backwards compatability is handled in the DataTable (DataTableVisualProperties has no access to the DataRowVisualProperties)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Analyzers/SymbolicExpressionTreeLengthAnalyzer.cs

    r14185 r15068  
    185185
    186186        treeLengthsTableRow.VisualProperties.ChartType = DataRowVisualProperties.DataRowChartType.Histogram;
    187         treeLengthsTableRow.VisualProperties.ExactBins = false;
     187        treeLengthsTable.VisualProperties.HistogramExactBins = false;
    188188
    189189        int range = maxLength - minLength;
    190190        if (range == 0) range = 1;
    191191        // the following trick should result in an integer intervalWidth of 1,2,4,...
    192         treeLengthsTableRow.VisualProperties.Bins = range;
     192        treeLengthsTable.VisualProperties.HistogramBins = range;
    193193
    194194        if (maxLength <= 25) // [0,25]
Note: See TracChangeset for help on using the changeset viewer.