Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/15/12 11:26:25 (13 years ago)
Author:
mkommend
Message:

#1710: Organized optimization views into folder and improved the automatic coloring of runs.

Location:
trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionViews
Files:
1 added
8 moved

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionViews/RunCollectionBubbleChartView.cs

    r7467 r7469  
    678678
    679679    private void ColorRuns(string axisValue) {
    680       var runs = Content.Select(r => new { Run = r, Value = GetValue(r, axisValue) }).Where(r => r.Value.HasValue);
     680      var runs = Content.Where(r => r.Visible).Select(r => new { Run = r, Value = GetValue(r, axisValue) }).Where(r => r.Value.HasValue);
    681681      double minValue = runs.Min(r => r.Value.Value);
    682682      double maxValue = runs.Max(r => r.Value.Value);
Note: See TracChangeset for help on using the changeset viewer.