Rev | Line | |
---|
[680] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.Linq;
|
---|
| 4 | using System.Text;
|
---|
| 5 |
|
---|
[754] | 6 | namespace HeuristicLab.Visualization{
|
---|
| 7 | public class ChartDataRowsModelDummy : ChartDataRowsModel {
|
---|
| 8 | public ChartDataRowsModelDummy(){
|
---|
| 9 | Random rand = new Random();
|
---|
[685] | 10 |
|
---|
[761] | 11 | // TODO an neues model interface anpassen
|
---|
| 12 | throw new NotImplementedException();
|
---|
| 13 |
|
---|
[754] | 14 | // test rows
|
---|
[761] | 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 | // }
|
---|
[754] | 21 | }
|
---|
[680] | 22 | }
|
---|
[754] | 23 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.