Hi i am having problem with my highcharts 'series' options. i initialized the chart options as below: var options = { chart: { renderTo: 'c
Solution 1:
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.
Post a Comment for "Problem With Highcharts Series Option"