Last change
on this file since 700 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:
293 bytes
|
Line | |
---|
1 | namespace HeuristicLab.Visualization {
|
---|
2 | public class ChartDataRowsModelColumn {
|
---|
3 | public readonly int ColumnId;
|
---|
4 | public readonly double[] Values;
|
---|
5 |
|
---|
6 | public ChartDataRowsModelColumn(int columnId, double[] values) {
|
---|
7 | ColumnId = columnId;
|
---|
8 | Values = values;
|
---|
9 | }
|
---|
10 | }
|
---|
11 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.