我正在尝试使用高图制作实时数据,但我厌倦了以下文档并且不明白, 我使用ajax刷新解决方案。 页面重新加载第一次时,我的图表呈现, 当ajax刷新/ 2000毫秒时,我的图表呈现为黑色
的index.php
<script type="text/javascript">
var auto_refresh = setInterval(
function () {
$('#src2').load('monitor.php').fadeIn("slow");
}, 2000); // refresh setiap 00000 milliseconds
</script>
<div id="container" style="min-width: 120px; height: 220px; margin: 0 auto"></div>
</head>
<body>
<div id="src2"></div>
Monitor.php
<script >
$(function () {
$('#container').highcharts({
title: {
text: 'Interval Chart',
x: -20 //center
},
subtitle: {
text: 'Cisco Wallboard',
x: -20
},
xAxis: {
categories: ['1', '2', '3', '4', '5', '6','7','8','9','10','11','12','13','14','15','16','17','18','19','20','21','22','23','24']
},
yAxis: {
title: {
text: 'Percentage (%)'
},
plotLines: [{
value: 0,
width: 1,
color: '#808080'
}]
},
tooltip: {
valueSuffix: '%'
},
legend: {
layout: 'vertical',
align: 'right',
verticalAlign: 'middle',
borderWidth: 0
},
series: [{
name: 'SCR',
data: [7.0, 6.9, 9.5, 14.5, 18.2, 21.5, 25.2, 26.5, 23.3, 18.3, 13.9, 9.6,7.0, 6.9, 9.5, 14.5, 18.2, 21.5, 25.2, 26.5, 23.3, 18.3, 13.9, 100]
}, {
name: 'SL',
data: [-0.2, 0.8, 5.7, 11.3, 17.0, 22.0, 24.8, 24.1, 20.1, 14.1, 8.6, 2.5]
}]
});
});
</script>
用萤火虫检查, 我不知道这个错误:TypeError:ha不是函数
答案 0 :(得分:1)
无需刷新整个页面进行高清动态数据更新,参考highcharts配置对象并只更新系列数据。