Hi
Im working on a website that uses google Line charts. Im receiving data from SQL table using a library function which we made that returns data as string array.
How can I use this array to plot in line chart.
I tried using
var data = google.visualization.arrayToDataTable(ar);
but as all column and row are string I cant get the plot.
Does anyone has any solution to it??