我正在尝试将 json 数据称为高图表。我只有一个系列..新手对此..任何人都可以帮助我是否正确调用 json 文件。请帮忙 :(
我在 highcharts 中调用 json 的代码
<script>
var chart;
$(document).ready(function ()
{
chart = new Highcharts.Chart({
chart: {
renderTo: 'container1',
type: 'area'
},
yAxis: {
type: 'double',
min: 0
},
xAxis: {
type: 'datetime',
labels: {
formatter: function () {
return Highcharts.dateFormat('%b %y', this.value);
},
dateTimeLabelFormats: {
month: '%b \'%y',
year: '%Y'
}
}
},
series: [{
name: 'Total Views',
data: []
}, ]
});
chart.series[0].setData(
});
</script>
<script>
$.getJSON('data.php', function(data)
{
chart.series[0].append(data);
}
</script>
<div id="container1" style="min-width: 400px; height: 400px; margin: 0 auto"></div>
</body>
</html>