Changeset 7124 for trunk/sources/HeuristicLab.Analysis
- Timestamp:
- 12/05/11 15:02:42 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Analysis/3.3/DataVisualization/DataRowVisualProperties.cs
r6978 r7124 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")] 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.