- Timestamp:
- 12/20/11 13:54:57 (13 years ago)
- Location:
- branches/HeuristicLab.Hive.Azure
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Hive.Azure
- Property svn:ignore
-
old new 4 4 *.suo 5 5 *.vsp 6 Doxygen 6 7 Google.ProtocolBuffers-0.9.1.dll 7 8 HeuristicLab 3.3.5.1.ReSharper.user 8 9 HeuristicLab 3.3.6.0.ReSharper.user 9 10 HeuristicLab.4.5.resharper.user 11 HeuristicLab.ExtLibs.6.0.ReSharper.user 10 12 HeuristicLab.resharper.user 11 13 ProtoGen.exe … … 16 18 bin 17 19 protoc.exe 18 HeuristicLab.ExtLibs.6.0.ReSharper.user19 Doxygen
-
- Property svn:mergeinfo changed
- Property svn:ignore
-
branches/HeuristicLab.Hive.Azure/HeuristicLab.Analysis
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Analysis (added) merged: 7021,7124,7126,7172
- Property svn:mergeinfo changed
-
branches/HeuristicLab.Hive.Azure/HeuristicLab.Analysis/3.3/DataVisualization/DataRowVisualProperties.cs
r6978 r7215 152 152 } 153 153 } 154 private bool isVisibleInLegend; 155 public bool IsVisibleInLegend { 156 get { return isVisibleInLegend; } 157 set { 158 if (isVisibleInLegend != value) { 159 isVisibleInLegend = value; 160 OnPropertyChanged("IsVisibleInLegend"); 161 } 162 } 163 } 154 164 private string displayName; 155 165 public string DisplayName { … … 218 228 get { return scaleFactor; } 219 229 set { scaleFactor = value; } 230 } 231 [Storable(Name = "IsVisibleInLegend", DefaultValue = true)] 232 private bool StorableIsVisibleInLegend { 233 get { return isVisibleInLegend; } 234 set { isVisibleInLegend = value; } 220 235 } 221 236 [Storable(Name = "DisplayName")] … … 241 256 this.scaleFactor = original.scaleFactor; 242 257 this.displayName = original.displayName; 258 this.isVisibleInLegend = original.isVisibleInLegend; 243 259 } 244 260 public DataRowVisualProperties() { … … 254 270 scaleFactor = 1.0; 255 271 displayName = String.Empty; 272 isVisibleInLegend = true; 256 273 } 257 274 public DataRowVisualProperties(string displayName)
Note: See TracChangeset
for help on using the changeset viewer.