Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 797 was 761, checked in by mstoeger, 16 years ago

changed interface between model and view (#316)

File size: 631 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5
6namespace HeuristicLab.Visualization{
7  public class ChartDataRowsModelDummy : ChartDataRowsModel  {
8    public ChartDataRowsModelDummy(){
9      Random rand = new Random();
10
11      // TODO an neues model interface anpassen   
12      throw new NotImplementedException();
13
14      // test rows
15//      for (int i = 0; i < 10; i++){
16//        AddDataRow(i);
17//        PushData(i, rand.NextDouble() * 1000);
18//        PushData(i, rand.NextDouble() * 1000);
19//        PushData(i, rand.NextDouble() * 1000);
20//      }
21    }
22  }
23}
Note: See TracBrowser for help on using the repository browser.