Using a Float Charts jquery tool the data var value is like that
var d2 = [[0,0],[1,0],[2,0],[3,0],[4,"1"],[5,0],[6,0],[7,0],[8,0],[9,0],[10,0],[11,0]]
When i change it to be got from a Request using that $.getJSON
var d2 = var d2 = $.getJSON( "UpdateCharts", function() { ......
The Response return as
[[0,0],[1,0],[2,0],[3,0],[4,"1"],[5,0],[6,0],[7,0],[8,0],[9,0],[10,0],[11,0]]
But i got an error that d2 value is 0 and not like first value
Uncaught TypeError: Cannot read property '0' of undefined