how i can get aaData result and put into array to populate another plugin like gmaps,highcharts ? i have results like this: { "aaData": [ { "name": "name1", "values": "R$ 2778", "totalUnidades": "188", "dt_atual": "27/03/2007", "coord": "-99.99,-99.99" }, { "name": "name2", "values": "R$ 2916", "totalUnidades": "120", "dt_atual": "31/05/2008", "coord": "-99.99,-99.99" } ] }
in datatables into: "fnDrawCallback": function () { // NEW ARRAY like [ [name1,R$ 2778] , [name2,R$ 2916] ... ]
// then call another plugin - highcharts,gmaps... $('#myDiv').highcharts({ ... series: [{ name: 'blabalbla, data: [NEW ARRAY] ... },
i thing this question is the same and very helpfull to others people.
thanks