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.DataPreprocessing.Views/3.4/PreprocessingDataTableView.cs

    r14381 r15068  
    716716    private void AddPointsToHistogramSeries(Series series, DataRow row, List<double> values) {
    717717      if (!row.Values.Any()) return;
    718       int bins = row.VisualProperties.Bins;
     718      int bins = Content.VisualProperties.HistogramBins;
    719719
    720720      double minValue = GetMinimum(row.Values);
     
    728728
    729729
    730       if (!row.VisualProperties.ExactBins) {
     730      if (!Content.VisualProperties.HistogramExactBins) {
    731731        intervalWidth = HumanRoundRange(intervalWidth);
    732732        minValue = Math.Floor(minValue / intervalWidth) * intervalWidth;
Note: See TracChangeset for help on using the changeset viewer.