I have a graph in which i want to show Date-Time in the X Axis and some values in the Y Axis.
I am wondering how I can show the date and time on the X Axis.
The Format in which i want to show is: dd/mm/yyyy hh:mm
My X Axis Data is :
Number[] xaxisSeries = {2407141120,2507141220,2607141640,2707141850,2807142027,2907142333};
plot.setDomainValueFormat(new SimpleDateFormat("dd/mm/yy hh:mm"));
But its not showing the correct values.
Please help me how should i show the Date-Time on my X Axis of the Graph