I think there is a misunderstanding. I am trying to figure out how to add to
the java code such that it will chart multiple series. I tried this in UI
step method:
double x = state.schedule.time();
double y1 = mars.meanR; //mars.meanR;
double y2 = 4; //mars.meanS;
// now add the data
series.add(x, y1, true);
series2.add(x, y2, true);
But it doesn't seem to work. Thoughts?