Following the examples on their website, I have (mostly!) succeeded in arriving at a hybrid of their two examples to show a heatmap
The only problem is, I seem to have introduced a ~30degree slant to the diagram such that each day's column is misaligned. I have posted an example here:
http://jsfiddle.net/richardarnatt/LMSDX/
xAxis: {
type: 'datetime',
labels: {
align: 'left',
x: 10,
},
tickInterval: 7*24*3600*1000
}
I have tried commenting out lines to see if it cancels out the aberration, but so far I have had very little success. If anyone has encountered this before I would be delighted to hear your thoughts!
It looks like you are confusing the x-axis by not supplying proper dates. Try this:
The d.setHours(0) ensures that each point in the day starts at the same place on the x-axis. d.getTime() puts in a proper time in x rather than a string.
You also need to change the colSize to be one day:
and the tick interval to be 1 day:
http://jsfiddle.net/8Nptn/