Free cookie consent management tool by TermsFeed Policy Generator

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

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

#320 first persistence mechanism (values)

File size: 828 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5
6namespace HeuristicLab.Visualization {
7  public class ChartDataRowsModelDummy : ChartDataRowsModel {
8
9     public ChartDataRowsModelDummy(){
10
11        // test rows
12        AddDataRow(1);
13        AddDataRow(2);
14        AddDataRow(3);
15        AddDataRow(4);
16
17       PushData(1, 1.2);
18       PushData(1, 2.0);
19       PushData(1, 4.5);
20       PushData(1, 8.4);
21       PushData(1, 5.0);
22       PushData(1, 6.0);
23       PushData(2, 2.0);
24       PushData(3, 8.3);
25       PushData(3, 7.3);
26       PushData(3, 9.7);
27       PushData(3, 2.3);
28       PushData(3, 1.7);
29       PushData(3, 0.3);
30       PushData(3, 0.1);
31       PushData(3, 2.0);
32       PushData(3, 8.8);
33       PushData(3, 9.9);
34
35     }
36   
37  }
38}
Note: See TracBrowser for help on using the repository browser.