Changeset 13722 for branches/PerformanceComparison/HeuristicLab.Analysis
- Timestamp:
- 03/23/16 22:51:27 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PerformanceComparison/HeuristicLab.Analysis/3.3/DataVisualization/ScatterPlotDataRowVisualProperties.cs
r12012 r13722 20 20 #endregion 21 21 22 using HeuristicLab.Common; 23 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 22 24 using System; 23 25 using System.ComponentModel; 24 26 using System.Drawing; 25 using HeuristicLab.Common;26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;27 27 28 28 namespace HeuristicLab.Analysis { … … 101 101 } 102 102 } 103 private bool showRegressionLine; 104 public bool ShowRegressionLine { 105 get { return showRegressionLine; } 106 set { 107 if (showRegressionLine == value) return; 108 showRegressionLine = value; 109 OnPropertyChanged("ShowRegressionLine"); 110 } 111 } 103 112 104 113 #region Persistence Properties … … 128 137 set { displayName = value; } 129 138 } 139 [Storable(Name = "ShowRegressionLine")] 140 private bool StorableShowRegressionLine { 141 get { return showRegressionLine; } 142 set { showRegressionLine = value; } 143 } 130 144 #endregion 131 145 … … 139 153 this.displayName = original.displayName; 140 154 this.isVisibleInLegend = original.isVisibleInLegend; 155 this.showRegressionLine = original.showRegressionLine; 141 156 } 142 157 public ScatterPlotDataRowVisualProperties() { … … 146 161 displayName = String.Empty; 147 162 isVisibleInLegend = true; 163 showRegressionLine = false; 148 164 } 149 165 public ScatterPlotDataRowVisualProperties(string displayName)
Note: See TracChangeset
for help on using the changeset viewer.