Changeset 6011 for branches/histogram/HeuristicLab.Analysis
- Timestamp:
- 04/15/11 14:54:43 (14 years ago)
- Location:
- branches/histogram
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/histogram
- Property svn:mergeinfo changed
/trunk/sources (added) merged: 5962-5963,5971-5972,5975-5976,5983-5984,5987,5993,5997-5998,6002-6003,6009
- Property svn:mergeinfo changed
-
branches/histogram/HeuristicLab.Analysis
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Analysis (added) merged: 5997
- Property svn:mergeinfo changed
-
branches/histogram/HeuristicLab.Analysis/3.3/DataVisualization/DataRowVisualProperties.cs
r6010 r6011 61 61 } 62 62 } 63 private bool secondXAxis; 64 public bool SecondXAxis { 65 get { return secondXAxis; } 66 set { 67 if (secondXAxis != value) { 68 secondXAxis = value; 69 OnPropertyChanged("SecondXAxis"); 70 } 71 } 72 } 63 73 private Color color; 64 74 public Color Color { … … 113 123 set { secondYAxis = value; } 114 124 } 125 [Storable(Name = "SecondXAxis")] 126 private bool StorableSecondXAxis { 127 get { return secondXAxis; } 128 set { secondXAxis = value; } 129 } 115 130 [Storable(Name = "Color")] 116 131 private Color StorableColor { … … 141 156 this.chartType = original.chartType; 142 157 this.secondYAxis = original.secondYAxis; 158 this.secondXAxis = original.secondXAxis; 143 159 this.color = original.color; 144 160 this.startIndexZero = original.startIndexZero; 161 this.bins = original.bins; 162 this.exactBins = original.exactBins; 145 163 } 146 164 public DataRowVisualProperties() { 147 165 chartType = DataRowChartType.Line; 148 166 secondYAxis = false; 167 secondXAxis = false; 149 168 color = Color.Empty; 150 169 startIndexZero = false; 170 bins = 10; 171 exactBins = false; 151 172 } 152 173 -
branches/histogram/HeuristicLab.Analysis/3.3/Tests
- Property svn:ignore
-
old new 1 1 bin 2 2 obj 3 *.vs10x
-
- Property svn:ignore
Note: See TracChangeset
for help on using the changeset viewer.