Last change
on this file since 697 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 | |
---|
1 | using System.Collections.Generic;
|
---|
2 |
|
---|
3 | namespace 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.