Changeset 3350 for trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionBubbleChartView.cs
- Timestamp:
- 04/15/10 01:34:27 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionBubbleChartView.cs
r3349 r3350 43 43 Caption = "Run Collection Bubble Chart"; 44 44 this.categoricalMapping = new Dictionary<int, Dictionary<object, double>>(); 45 base.ReadOnly = true; 45 46 } 46 47 … … 53 54 get { return (RunCollection)base.Content; } 54 55 set { base.Content = value; } 56 } 57 public override bool ReadOnly { 58 get { return base.ReadOnly; } 59 set { /*not needed because results are always readonly */} 55 60 } 56 61
Note: See TracChangeset
for help on using the changeset viewer.