Reputation: 1513
I have date-time axis vs integer. Whenever I set step: minute, the chart can't be seen, it just keeps on loading, while when I delete it, I can see the chart then. This does not allow me to use the step feature. You can view it on http://alnnovative.com/zingdemo.php Is there any solution to it?
Upvotes: 1
Views: 53
Reputation: 1520
You have a reference error in your page that says hour is not defined
.
The "step" attribute accepts a numeric or string value.
Change "step":hour
to "step":"hour"
Upvotes: 6