score:1

Accepted answer

the problem is that your min and max values are not numbers but date strings. when casting them to timestamp numbers, it works.

var start = +new date(2013, 1, 12, 0, 0, 0, 0);
var end = +new date(2013, 1, 14, 0, 0, 0, 0);

working demo

score:1

problem is you set:

xaxis: {
     type: 'datetime',
     min: start,
     max: end,
     minrange: 3600000      
},

which set min and max values which does not let chart zoom as it already define min and max values.

working demo


Related Query

More Query from same tag