Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/17/15 09:25:44 (9 years ago)
Author:
abeham
Message:

#2431:

  • Added run collection view
  • Changed name of analyzers
  • Modified algorithms to include Execution Time as a result
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PerformanceComparison/HeuristicLab.Analysis.Views/3.3/IndexedDataTableView.cs

    r12764 r12771  
    165165      series.BorderDashStyle = ChartDashStyle.Solid;
    166166      series.BorderColor = Color.Empty;
    167       if (!typeof(T).Equals(typeof(DateTime)))
    168         series.IsXValueIndexed = true;
    169167
    170168      if (row.VisualProperties.Color != Color.Empty)
     
    236234        area.AxisX.IntervalAutoMode = IntervalAutoMode.VariableCount;
    237235      }
     236
     237      area.AxisX.IsLogarithmic = Content.VisualProperties.XAxisLogScale;
     238      area.AxisX2.IsLogarithmic = Content.VisualProperties.SecondXAxisLogScale;
     239      area.AxisY.IsLogarithmic = Content.VisualProperties.YAxisLogScale;
     240      area.AxisY2.IsLogarithmic = Content.VisualProperties.SecondYAxisLogScale;
    238241    }
    239242
Note: See TracChangeset for help on using the changeset viewer.