- Timestamp:
- 03/09/17 09:35:42 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Analysis/3.3/DataVisualization/GanttData.cs
r14734 r14737 34 34 [Item("Gantt Data", "Data of a Gantt visualization")] 35 35 [StorableClass] 36 public class GanttData : Item {36 public class GanttData : NamedItem { 37 37 38 38 [Storable] … … 51 51 categoryColors = new ObservableDictionary<string, Color>(original.categoryColors); 52 52 } 53 public GanttData() { 53 public GanttData() : this("Gantt Data", "Data of a Gantt visualization") { } 54 public GanttData(string name) : this(name, string.Empty) { } 55 public GanttData(string name, string description) : base(name, description) { 54 56 rows = new NamedItemCollection<GanttRow>(); 55 57 categoryColors = new ObservableDictionary<string, Color>(); 56 58 } 57 public GanttData(IEnumerable<GanttRow> rows) { 59 public GanttData(IEnumerable<GanttRow> rows) : this("Gantt Data", rows) { } 60 public GanttData(string name, IEnumerable<GanttRow> rows) : this(name, string.Empty, rows) { } 61 public GanttData(string name, string description, IEnumerable<GanttRow> rows) : base(name, description) { 58 62 this.rows = new NamedItemCollection<GanttRow>(rows); 59 63 categoryColors = new ObservableDictionary<string, Color>(); … … 78 82 items = cloner.Clone(original.items); 79 83 } 80 public GanttRow() { 84 public GanttRow() : this("Gantt Row", "Row of a Gantt chart") { } 85 public GanttRow(string name) : this(name, string.Empty) { } 86 public GanttRow(string name, string description) : base(name, description) { 81 87 items = new ItemList<GanttItem>(); 82 88 } 83 public GanttRow(IEnumerable<GanttItem> items) { 89 public GanttRow(IEnumerable<GanttItem> items) : this("Gantt Row", items) { } 90 public GanttRow(string name, IEnumerable<GanttItem> items) : this(name, string.Empty, items) { } 91 public GanttRow(string name, string description, IEnumerable<GanttItem> items) : base(name, description) { 84 92 this.items = new ItemList<GanttItem>(items); 85 93 }
Note: See TracChangeset
for help on using the changeset viewer.