score:2

Accepted answer

The problem is options.series.data.push(parseFloat(item)).

If you look at your options object, you can see that your series array is empty. You can ad series object in your options definition as follows -

series: [{
    data: []
}]

Also the line

var series = {
    data: []
};

is of no use.


Related Query