Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Visualization/ChartDataRowsModelColumn.cs @ 734

Last change on this file since 734 was 726, checked in by cbahner, 16 years ago

#320 changed collections to generics; first persistence mechanism tests

File size: 277 bytes
Line 
1namespace HeuristicLab.Visualization {
2  public class ChartDataRowsModelColumn {
3    public  int ColumnId;
4    public  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.