- Timestamp:
- 01/08/12 19:13:14 (13 years ago)
- Location:
- branches/RegressionBenchmarks
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/RegressionBenchmarks
- Property svn:ignore
-
old new 18 18 bin 19 19 protoc.exe 20 *.user
-
- Property svn:mergeinfo changed
/trunk/sources merged: 7209,7214,7216-7230,7233-7239,7241,7243-7252,7254,7256-7261,7265-7266,7272-7275,7277,7280,7283
- Property svn:ignore
-
branches/RegressionBenchmarks/HeuristicLab.Analysis
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Analysis merged: 7221,7225,7229,7245,7259
- Property svn:mergeinfo changed
-
branches/RegressionBenchmarks/HeuristicLab.Analysis/3.3/DataVisualization/DataRow.cs
r6628 r7290 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 1Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/RegressionBenchmarks/HeuristicLab.Analysis/3.3/DataVisualization/DataRowVisualProperties.cs
r7255 r7290 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 1Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/RegressionBenchmarks/HeuristicLab.Analysis/3.3/DataVisualization/DataTable.cs
r7255 r7290 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 1Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 93 93 public DataTable(string name) 94 94 : base(name) { 95 VisualProperties = new DataTableVisualProperties( );95 VisualProperties = new DataTableVisualProperties(name); 96 96 rows = new NamedItemCollection<DataRow>(); 97 97 this.RegisterRowsEvents(); … … 99 99 public DataTable(string name, string description) 100 100 : base(name, description) { 101 VisualProperties = new DataTableVisualProperties( );101 VisualProperties = new DataTableVisualProperties(name); 102 102 rows = new NamedItemCollection<DataRow>(); 103 103 this.RegisterRowsEvents(); … … 108 108 [StorableHook(HookType.AfterDeserialization)] 109 109 private void AfterDeserialization() { 110 if (VisualProperties == null) VisualProperties = new DataTableVisualProperties(); 110 if (VisualProperties == null) VisualProperties = new DataTableVisualProperties(name); 111 if (VisualProperties.Title == null) VisualProperties.Title = name; 111 112 } 112 113 #endregion -
branches/RegressionBenchmarks/HeuristicLab.Analysis/3.3/DataVisualization/DataTableHistory.cs
r7255 r7290 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 1Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/RegressionBenchmarks/HeuristicLab.Analysis/3.3/DataVisualization/DataTableValuesCollector.cs
r5877 r7290 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 1Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/RegressionBenchmarks/HeuristicLab.Analysis/3.3/DataVisualization/DataTableVisualProperties.cs
r6676 r7290 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 1Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 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; … … 480 497 this.secondYAxisMaximumAuto = true; 481 498 this.secondYAxisMaximumFixedValue = double.NaN; 499 } 500 public DataTableVisualProperties(string title) 501 : this() { 502 this.title = title; 482 503 } 483 504 -
branches/RegressionBenchmarks/HeuristicLab.Analysis/3.3/DataVisualization/HeatMap.cs
r7255 r7290 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 1Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/RegressionBenchmarks/HeuristicLab.Analysis/3.3/DataVisualization/HeatMapHistory.cs
r7255 r7290 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 1Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab.
Note: See TracChangeset
for help on using the changeset viewer.