Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Visualization/IChartDataRowsModel.cs @ 727

Last change on this file since 727 was 697, checked in by mstoeger, 16 years ago

changed interface between model and view to support full and partial updates as decided in the last meeting (#316)

  • model.Columns property provides access to all values contained within the model for full updates
  • model.DataChanged event notifies the view of partial updates
File size: 248 bytes
Line 
1using System.Collections.Generic;
2
3namespace HeuristicLab.Visualization {
4  public interface IChartDataRowsModel {
5    event ChartDataRowsModelColumnChangedHandler ColumnChanged;
6    List<ChartDataRowsModelColumn> Columns { get; }
7  }
8}
Note: See TracBrowser for help on using the repository browser.