I have large data sets to plot, it would be a lot more compact if I could put them into the transmitted HTML as a JavaScript array
"data": [30,26, etc...]
and not the much more verbose
"data": [
{
"value": "30"
},
{
"value": "26"
},
etc...
Having to massage the data into format using jQuery
$.map(dataArray, function(val,i) {return {"value": val};})
seems like a waist of development and render time:
Thanks,
Jab