0

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

shar
  • 11
  • 3

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,205
  • 1
  • 15
  • 22
  • yes , I didn't use time series now . Used the normal XYseries to plot on Y-axis. Thanks . – shar Oct 30 '14 at 07:43