0

the timeseries has add method as add(date,double) . How to interchange it to add(double,date) ?

1 Answers1

0

I don't think its possible the way you think but you can use if you stick to your plan to keep time on y-axis

mRenderer.addYTextLabel(10, "28/10/2014");
mRenderer.addYTextLabel(20, "29/10/2014");
 mRenderer.addYTextLabel(30, "30/10/2014");

here you will set a string as time at specific points on y.

keshav
  • 3,235
  • 1
  • 16
  • 22