私はチャートを作成しました。リアルタイムで更新したいので、私はajaxを使用しています。私の質問は、どのようにajaxレスポンスを表示するのですか?以下は私のチャートのサンプルスクリプトです。私を助けてください。どうもありがとうございました。ajaxレスポンスを表示する方法
Chart.php -
$(document).ready(function() {
Highcharts.chart('container', {
chart: {
type: 'bar'
},
title: {
text: "TITLE"
},
series: [{
name: 'Present',
data: [*//must display the ajax response here//*]
}]
});
});
ajax.php
<script>
function fanc_no(){
$.ajax({
url: "test.php",
success: function(result){
$("#container").html(result);
}
});
}
window.setInterval(function(){
func_no();
}, 1000);
</script>
[データをAjaxでハイチャートに読み込む](https://stackoverflow.com/questions/12223972/load-data-into-highcharts-withajax) –