Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/14/11 00:18:46 (13 years ago)
Author:
abeham
Message:

#1465

  • worked on histogram integration
    • Added control to display DataRowVisualProperties
    • Added a dialog to select the DataRowVisualProperties of different series
    • Added a Properties menu item to the context menu and an option to show or hide this item (default is hide)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/histogram/HeuristicLab.Analysis/3.3/DataVisualization/DataRowVisualProperties.cs

    r5445 r6010  
    3636      Columns,
    3737      Points,
    38       Bars
     38      Bars,
     39      Histogram
    3940    }
    4041    #endregion
     
    8081      }
    8182    }
     83    private int bins;
     84    public int Bins {
     85      get { return bins; }
     86      set {
     87        if (bins != value) {
     88          bins = value;
     89          OnPropertyChanged("Bins");
     90        }
     91      }
     92    }
     93    private bool exactBins;
     94    public bool ExactBins {
     95      get { return exactBins; }
     96      set {
     97        if (exactBins != value) {
     98          exactBins = value;
     99          OnPropertyChanged("ExactBins");
     100        }
     101      }
     102    }
    82103
    83104    #region Persistence Properties
     
    101122      get { return startIndexZero; }
    102123      set { startIndexZero = value; }
     124    }
     125    [Storable(Name = "Bins")]
     126    private int StorableBins {
     127      get { return bins; }
     128      set { bins = value; }
     129    }
     130    [Storable(Name = "ExactBins")]
     131    private bool StorableExactBins {
     132      get { return exactBins; }
     133      set { exactBins = value; }
    103134    }
    104135    #endregion
Note: See TracChangeset for help on using the changeset viewer.