Changeset 8405
- Timestamp:
- 08/03/12 10:04:37 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Analysis/3.3/DataVisualization/ScatterPlot.cs
r8404 r8405 105 105 #region Backwards compatible code, remove with 3.4 106 106 private ObservableList<PointF> points; 107 [Storable(Name = "points" )]107 [Storable(Name = "points", AllowOneWay = true)] 108 108 private ObservableList<PointF> StorablePoints { 109 109 set { points = value; } 110 get { return points; }111 110 } 112 111 private string xAxisName; 113 [Storable(Name = "xAxisName" )]112 [Storable(Name = "xAxisName", AllowOneWay = true)] 114 113 private string StorableXAxisName { 115 114 set { xAxisName = value; } 116 get { return xAxisName; }117 115 } 118 116 private string yAxisName; 119 [Storable(Name = "yAxisName" )]117 [Storable(Name = "yAxisName", AllowOneWay = true)] 120 118 private string StorableYAxisName { 121 119 set { yAxisName = value; } 122 get { return yAxisName; }123 120 } 124 121 [StorableHook(HookType.AfterDeserialization)]
Note: See TracChangeset
for help on using the changeset viewer.