Changeset 6010 for branches/histogram/HeuristicLab.Analysis
- Timestamp:
- 04/14/11 00:18:46 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/histogram/HeuristicLab.Analysis/3.3/DataVisualization/DataRowVisualProperties.cs
r5445 r6010 36 36 Columns, 37 37 Points, 38 Bars 38 Bars, 39 Histogram 39 40 } 40 41 #endregion … … 80 81 } 81 82 } 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 } 82 103 83 104 #region Persistence Properties … … 101 122 get { return startIndexZero; } 102 123 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; } 103 134 } 104 135 #endregion
Note: See TracChangeset
for help on using the changeset viewer.