Changeset 14582 for trunk/sources/HeuristicLab.Analysis/3.3/DataVisualization/DataRowVisualProperties.cs
- Timestamp:
- 01/18/17 13:17:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Analysis/3.3/DataVisualization/DataRowVisualProperties.cs
r14185 r14582 52 52 } 53 53 #endregion 54 #region Histogram Aggregation 55 public enum DataRowHistogramAggregation { 56 Overlapping, 57 SideBySide, 58 Stacked 59 } 60 #endregion 54 61 55 62 private DataRowChartType chartType; … … 140 147 exactBins = value; 141 148 OnPropertyChanged("ExactBins"); 149 } 150 } 151 } 152 private DataRowHistogramAggregation aggregation; 153 public DataRowHistogramAggregation Aggregation { 154 get { return aggregation; } 155 set { 156 if (aggregation != value) { 157 aggregation = value; 158 OnPropertyChanged("Aggregation"); 142 159 } 143 160 } … … 224 241 get { return exactBins; } 225 242 set { exactBins = value; } 243 } 244 [Storable(Name = "Aggregation", DefaultValue = DataRowHistogramAggregation.Overlapping)] 245 private DataRowHistogramAggregation StorableAggregation { 246 get { return aggregation; } 247 set { aggregation = value; } 226 248 } 227 249 [Storable(Name = "ScaleFactor")] … … 255 277 this.bins = original.bins; 256 278 this.exactBins = original.exactBins; 279 this.aggregation = original.aggregation; 257 280 this.scaleFactor = original.scaleFactor; 258 281 this.displayName = original.displayName; … … 269 292 bins = 10; 270 293 exactBins = false; 294 aggregation = DataRowHistogramAggregation.Overlapping; 271 295 scaleFactor = 1.0; 272 296 displayName = String.Empty;
Note: See TracChangeset
for help on using the changeset viewer.