Changeset 7290 for branches/RegressionBenchmarks/HeuristicLab.Analysis/3.3/DataVisualization/DataTableVisualProperties.cs
- Timestamp:
- 01/08/12 19:13:14 (13 years ago)
- Location:
- branches/RegressionBenchmarks
- Files:
-
- 3 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/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
Note: See TracChangeset
for help on using the changeset viewer.