Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/07/14 10:49:15 (10 years ago)
Author:
rstoll
Message:
  • SelectionEvent added
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/PreprocessingDataTableView.cs

    r10803 r10804  
    2020#endregion
    2121
    22 using HeuristicLab.Collections;
    23 using HeuristicLab.Core.Views;
    24 using HeuristicLab.MainForm;
    2522using System;
    2623using System.Collections.Generic;
     
    2926using System.Windows.Forms;
    3027using System.Windows.Forms.DataVisualization.Charting;
     28using HeuristicLab.Collections;
     29using HeuristicLab.Core.Views;
    3130using HeuristicLab.DataPreprocessing.Implementations;
     31using HeuristicLab.MainForm;
    3232
    3333namespace HeuristicLab.Analysis.Views {
     
    172172      else series.Color = Color.Empty;
    173173      series.IsVisibleInLegend = row.VisualProperties.IsVisibleInLegend;
    174      
     174
    175175      switch (row.VisualProperties.ChartType) {
    176176        case DataRowVisualProperties.DataRowChartType.Line:
     
    535535
    536536    // get minimum ignores nan values
    537     private double GetMinimum(IEnumerable<double> values)
    538     {
     537    private double GetMinimum(IEnumerable<double> values) {
    539538      double min = Double.MaxValue;
    540539
    541540      foreach (double value in values) {
    542541        if (!Double.IsNaN(value) && value < min)
    543           min = value;     
     542          min = value;
    544543      }
    545544      return min;
Note: See TracChangeset for help on using the changeset viewer.