Skip to content Skip to sidebar Skip to footer

Retrieving Json Data For Highcharts With Multiple Series?

I've been looking through tons of examples but I can't seem to get my code to pull out the data. The chart is blank. I have a php file that gives the following: (date, value1, valu

Solution 1:

As per Pal's comment - changed it to this:

val1.push([value[0], value[1]]);
val2.push([value[0], value[2]]);

Post a Comment for "Retrieving Json Data For Highcharts With Multiple Series?"