I have a loop that is populating the datapoints from the server, the output is as follows :
data: [
{
type: "line",
dataPoints: [
{x: new Date(2013, 08, 12), y: 3 },
{x: new Date(2013, 08, 13), y: 3 },
{x: new Date(2013, 08, 14), y: 10 },
]
},
]
For some reason instead of displaying the days on the graph’s axis i get 3:00 am 3:00 pm repeated 3 times.
Any ideas on what might be the issue?
-
This topic was modified 11 years, 3 months ago by Patsy Issa.