Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/12/13 16:11:37 (11 years ago)
Author:
mkommend
Message:

#2016: Changes in the bubblechart:

  • Added possibility to select runs.
  • Added option to hide all selected runs.
  • Performance improvements regarding coloring, filtering and selection.
  • Corrected minor bug regarding categorial values in the bubblechart and boxplot view.
File:
1 edited

Legend:

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

    r9236 r9312  
    328328      if (!this.categoricalMapping.ContainsKey(dimension)) {
    329329        this.categoricalMapping[dimension] = new Dictionary<object, double>();
    330         var orderedCategories = Content.Select(r => Content.GetValue(r, dimension).ToString())
     330        var orderedCategories = Content.Where(r=> r.Visible).Select(r => Content.GetValue(r, dimension).ToString())
    331331                                .Distinct()
    332332                                .OrderBy(x => x, new NaturalStringComparer());
Note: See TracChangeset for help on using the changeset viewer.