Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/09/11 00:15:33 (13 years ago)
Author:
abeham
Message:

#1465

  • Added movie view for HistogramHistory
  • Added QualityDistributionAnalyzer for analyzing the development of the quality distributions in a population
  • Added AggregatedHistogramHistoryView for displaying a histogram of the accumulated data in a history
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/histogram/HeuristicLab.Analysis.Views/3.3/HistogramView.cs

    r5970 r5994  
    2929  [View("Histogram View")]
    3030  [Content(typeof(Histogram), IsDefaultView = true)]
    31   public sealed partial class HistogramView : NamedItemView {
     31  public partial class HistogramView : NamedItemView {
    3232
    3333    public new Histogram Content {
     
    7070    protected override void OnContentChanged() {
    7171      base.OnContentChanged();
    72       if (Content == null) {
    73         histogramControl.ClearPoints();
    74       } else {
     72      histogramControl.ClearPoints();
     73      if (Content != null) {
    7574        histogramControl.AddPoints(Content.Values);
    7675      }
Note: See TracChangeset for help on using the changeset viewer.