- Timestamp:
- 12/21/11 16:20:18 (13 years ago)
- Location:
- trunk/sources/HeuristicLab.Analysis/3.3/DataVisualization
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Analysis/3.3/DataVisualization/DataTable.cs
r7201 r7221 95 95 VisualProperties = new DataTableVisualProperties(); 96 96 rows = new NamedItemCollection<DataRow>(); 97 visualProperties.Title = name; 97 98 this.RegisterRowsEvents(); 98 99 } … … 101 102 VisualProperties = new DataTableVisualProperties(); 102 103 rows = new NamedItemCollection<DataRow>(); 104 visualProperties.Title = name; 103 105 this.RegisterRowsEvents(); 104 106 } -
trunk/sources/HeuristicLab.Analysis/3.3/DataVisualization/DataTableVisualProperties.cs
r6676 r7221 52 52 } 53 53 } 54 private string title; 55 public string Title { 56 get { return title; } 57 set { 58 if (title != value) { 59 title = value; 60 OnPropertyChanged("Title"); 61 } 62 } 63 } 54 64 private Font axisTitleFont; 55 65 public Font AxisTitleFont { … … 315 325 get { return titleColor; } 316 326 set { titleColor = value; } 327 } 328 [Storable(Name = "Title")] 329 private string StorableTitle { 330 get { return title; } 331 set { title = value; } 317 332 } 318 333 [Storable(Name = "AxisTitleFont")] … … 436 451 if (original.axisTitleFont != null) 437 452 this.axisTitleFont = (Font)original.axisTitleFont.Clone(); 453 this.title = original.title; 438 454 this.xAxisTitle = original.xAxisTitle; 439 455 this.yAxisTitle = original.yAxisTitle; … … 458 474 } 459 475 public DataTableVisualProperties() { 460 titleColor = Color.Black; 461 axisTitleColor = Color.Black; 476 this.titleColor = Color.Black; 477 this.axisTitleColor = Color.Black; 478 this.title = string.Empty; 462 479 this.xAxisTitle = string.Empty; 463 480 this.yAxisTitle = string.Empty;
Note: See TracChangeset
for help on using the changeset viewer.