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 |
|
---|
12 | // test rows
|
---|
13 | for (int i = 0; i < 10; i++){
|
---|
14 | AddDataRow(i);
|
---|
15 | PushData(i, rand.NextDouble() * 1000);
|
---|
16 | PushData(i, rand.NextDouble() * 1000);
|
---|
17 | PushData(i, rand.NextDouble() * 1000);
|
---|
18 | }
|
---|
19 | }
|
---|
20 | }
|
---|
21 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.