Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/10/09 17:14:04 (15 years ago)
Author:
dwagner
Message:

dw: Added new dialog for adding lines using the options dialog. (#478)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Visualization/3.2/AvgAggregator.cs

    r1996 r2040  
    33
    44namespace HeuristicLab.Visualization {
    5   public class AvgAggregator : DataRowBase {
     5  public interface IAggregator {
     6    void AddWatch(IDataRow dataRow);
     7    void RemoveWatch(IDataRow dataRow);
     8  }
     9
     10  public class AvgAggregator : DataRowBase, IAggregator {
    611    #region IAggregator Members
    712
     
    5863      curAvgValue = 0;
    5964      count = 0;
     65      this.RowSettings.LineType = DataRowType.SingleValue;
    6066    }
    6167
Note: See TracChangeset for help on using the changeset viewer.