I have created a dynamically generated timeline using php. The data generation is always the same, but for a specific set of date/times the data points do not appear on the chart.
29th April 2013 - 06:00:00 -> 1st May 2013 - 06:00:00 <--- Working
29th April 2013 - 06:00:00 -> 2nd May 2013 - 06:00:00 <--- Broken
I have created a jsFiddle showing both charts (A working version and a broken version). Below is an example of how each data point is defined.
intervals: [{
from: Date.UTC(2013, 3, 29, 06, 12, 31),
to: Date.UTC(2013, 3, 29, 06, 17, 13)
}]
I cannot see what is incorrect in the broken chart. The data format is exactly the same in both, yet the second chart's data points do not appear.
Any help would be appreciated, cheers!
Edit: In the jsFiddle the broken chart code (in the javascript section) starts on line 968