|
datetime internally doing ascending calculation |
Posted by Prathika on Jun-29-2011 17:54 |
|
Hi,
In my graph, x-axis value as DateTime format which contains different order. I refered "Binary series graph". I want month/day and hh:mm format as x-axix label.
For example,
DateTime array has different value that is not in ascending order. Is there any method will convert the DateTime value as ascending order and plot the graph.
i.e., 28/6 6:35, 28/6 5:35 will be changed to 28/6 5:35, 28/6 6:35
Thanks & Regards,
K.Prathika |
Re: datetime internally doing ascending calculation |
Posted by Peter Kwan on Jun-30-2011 03:03 |
|
Hi Prathika,
Unluckily, ChartDirector cannot sort the data for you. Your code would need to sort the data before passing the data to ChartDirector. (If your data are from a database, you may use the SQL ORDER BY query to sort your data.)
Regards
Peter Kwan |
|