Changeset 9454 for trunk/sources/HeuristicLab.Analysis
- Timestamp:
- 05/06/13 23:11:56 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Analysis/3.3/DataVisualization/ScatterPlot.cs
r8405 r9454 88 88 public ScatterPlot() 89 89 : base() { 90 this.Name = ItemName; 91 this.Description = ItemDescription; 90 92 VisualProperties = new ScatterPlotVisualProperties(); 91 93 Rows = new NamedItemCollection<ScatterPlotDataRow>(); … … 126 128 if (rows == null) Rows = new NamedItemCollection<ScatterPlotDataRow>(); 127 129 if ((Rows.Count == 0) && (points != null)) Rows.Add(new ScatterPlotDataRow(name, null, points.Select(p => new Point2D<double>(p.X, p.Y)))); 130 if (string.IsNullOrEmpty(this.name)) this.name = ItemName; 131 if (string.IsNullOrEmpty(this.description)) this.description = ItemDescription; 128 132 } 129 133 #endregion
Note: See TracChangeset
for help on using the changeset viewer.