the timeseries has add method as add(date,double) . How to interchange it to add(double,date) ?
Asked
Active
Viewed 37 times
0
-
Is this what you're trying to do: http://stackoverflow.com/questions/16014103/achartengine-cant-figure-how-to-use-dates-as-x-axis-the-file-i-save-is-empt – candied_orange Oct 26 '14 at 10:16
-
I want to plot time on y-axis . – sharmadha sainath Oct 26 '14 at 10:22
1 Answers
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
-
yes , I didn't use time series now . Used the normal XYseries to plot on Y-axis. Thanks . – sharmadha sainath Oct 30 '14 at 07:43