score:2

Accepted answer

To set extremes I advice using min and max for axis. That's why this exists, see: http://jsfiddle.net/J8jKQ/3/

Second issue is that your dates are Date objects, while should be timestamps:

myStartDate.getTime();
myEndDate.getTime();

And example: http://jsfiddle.net/J8jKQ/4/


Related Query

More Query from same tag