Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/09/10 00:47:06 (13 years ago)
Author:
swagner
Message:

Worked on population diversity analysis (#1188)

Location:
trunk/sources/HeuristicLab.Analysis.Views/3.3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Analysis.Views/3.3/DataTableView.cs

    r4648 r4748  
    129129      FillSeriesWithRowValues(series, row);
    130130      chart.Series.Add(series);
     131      chart.ChartAreas[0].RecalculateAxesScale();
    131132      UpdateYCursorInterval();
    132133    }
     
    155156      if (invisibleSeries.Contains(series))
    156157        invisibleSeries.Remove(series);
     158      chart.ChartAreas[0].RecalculateAxesScale();
    157159    }
    158160
     
    258260        chart.Series[row.Name].YAxisType = row.VisualProperties.SecondYAxis ? AxisType.Secondary : AxisType.Primary;
    259261        if (row.VisualProperties.Color != Color.Empty) chart.Series[row.Name].Color = row.VisualProperties.Color;
     262        chart.ChartAreas[0].RecalculateAxesScale();
    260263      }
    261264    }
  • trunk/sources/HeuristicLab.Analysis.Views/3.3/HeatMapView.cs

    r4739 r4748  
    119119      p.Color = GetDataPointColor(value, Content.Minimum, Content.Maximum, grayscaleCheckBox.Checked);
    120120      p.MarkerStyle = MarkerStyle.Square;
    121       //p.MarkerSize = 10;
    122       //string nl = Environment.NewLine;
    123       //p.ToolTip = string.Format("Row: {0}{3}Column: {1}{3}Value: {2}", index2, index1, value, nl);
    124121      return p;
    125122    }
Note: See TracChangeset for help on using the changeset viewer.