Hi. I'm trying to use a jQuery plugin, the HighCharts, calling the series from a webservice but i don't know how to use the javascript javascript that i'm filling.
I've created the object like this:
chartOjb = new Object();
Then i create two properties:name and data. (i've already tested if i'm getting the values properly with alerts(); and everyting is ok).
In HighCharts examples, they fill the series like this:
series: [{
name: 'Jane',
data: [1, 0, 4]
}, {
name: 'John',
data: [5, 7, 3]
}]
I've tried to do something like this:
series: chartObj
But that doesn't work. What would be the proper way to do this? The example that i'm trying to follow is here: http://www.highcharts.com/documentation/how-to-use
Thanks