jqPlot DateAxis tickInterval not working

I found a solution!
You need to specify the tickinterval as a javascript timestamp.
So lets say you want 1 hour. That would be 1000*60*60 = 3600000 (javascript timestamps are in milliseconds).

So you would write: tickInterval:’3600000′,

Works here.

Leave a Comment