I think the problem is that your X values โโare unsorted, I sorted the array by X value and it works fine, look:
http://jsfiddle.net/9H6h2/
Or your dataset is wrong, something like this makes sense to me:
var ldlData = [[100,1336535631000], [110, 1304913231000], [120, 1273377231000], [130, 1241841231000], [140, 1210305231000], [150, 1178682831000]];
Hope this helps!
source share