ajaxを使用してグラフを更新したいのですが、setDataメソッドには配列が必要であり、文字列しかないため機能しません。
これが私のコードです
$(".chooseService a").click(function() {
$("span.currentService").html($(this).html());
$.get('http://localhost:8080/dashboard/ws/charge/repartition/jour/'+$(this).html(),
function(data) {
// setData (Array<Mixed> data, [Boolean redraw])
chartDay.series[0].setData(data);
});
});
データは次のようなフォーマットされた文字列です
[[1356995280000,183.0],[1356995520000,573.0],[1356995760000,243.0]]
誰かが何か考えを持っていますか?