Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 |
|
---|
6 | namespace 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.