Changeset 14638
- Timestamp:
- 02/02/17 09:03:11 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionViews/RunCollectionParameterAnalysisView.cs
r14637 r14638 531 531 #region Inner Types 532 532 class ParameterInfo { 533 public string Name { get; }534 public Dictionary<string, ParameterValueInfo> Values { get; }533 public string Name { get; private set; } 534 public Dictionary<string, ParameterValueInfo> Values { get; private set; } 535 535 public IEnumerable<IRun> Runs { 536 536 get { return Values.Values.SelectMany(x => x.Runs); } … … 555 555 } 556 556 class ParameterValueInfo { 557 public string Value { get; }557 public string Value { get; private set; } 558 558 public Color Color { get; set; } 559 public IList<IRun> Runs { get; }559 public IList<IRun> Runs { get; private set; } 560 560 public int RunCount { 561 561 get { return Runs.Count; } … … 572 572 } 573 573 class GroupInfo { 574 public string Text { get; }575 public Color Color { get; }576 public IList<IRun> Runs { get; }577 public bool IsParameter { get; }574 public string Text { get; private set; } 575 public Color Color { get; private set; } 576 public IList<IRun> Runs { get; private set; } 577 public bool IsParameter { get; private set; } 578 578 public GroupInfo(string text, Color color, IEnumerable<IRun> runs, bool isParamter) { 579 579 Text = text; … … 590 590 } 591 591 class SeriesInfo { 592 public Color Color { get; }593 public SeriesTypes Type { get; }592 public Color Color { get; private set; } 593 public SeriesTypes Type { get; private set; } 594 594 public SeriesInfo(Color color, SeriesTypes type) { 595 595 Color = color; … … 598 598 } 599 599 class LegendItemInfo { 600 public Color Color { get; }600 public Color Color { get; private set; } 601 601 public bool SeriesVisible { get; set; } 602 public IEnumerable<Series> Series { get; }602 public IEnumerable<Series> Series { get; private set; } 603 603 public LegendItemInfo(Color color, IEnumerable<Series> series) { 604 604 Color = color;
Note: See TracChangeset
for help on using the changeset viewer.