我正在尝试使用Highcharts中的Highstock创建一个图表,但无法弄清楚如何从PHP文件中提供正确的JSON数据。
这是我的HTML文件。用于在getJSON
中获取数据的原始网址为http://www.highcharts.com/samples/data/jsonp.php?filename=' + name.toLowerCase() + '-c.json&callback=?
正在进行三种不同的通话。例如,一个是: http://www.highcharts.com/samples/data/jsonp.php?filename=goog-c.json&callback=?
<html><head>
<script src="https://code.highcharts.com/stock/highstock.js"></script>
<script src="https://code.highcharts.com/stock/modules/exporting.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
</head><body>
<div id="container" style="height: 400px; min-width: 310px"></div>
<script>
$(function () {
var seriesOptions = [],
seriesCounter = 0,
names = ['MSFT', 'AAPL', 'GOOG'];
/**
* Create the chart when all data is loaded
* @returns {undefined}
*/
function createChart() {
Highcharts.stockChart('container', {
rangeSelector: {
selected: 4
},
yAxis: {
labels: {
formatter: function () {
return (this.value > 0 ? ' + ' : '') + this.value + '%';
}
},
plotLines: [{
value: 0,
width: 2,
color: 'silver'
}]
},
plotOptions: {
series: {
compare: 'percent',
showInNavigator: true
}
},
tooltip: {
pointFormat: '<span style="color:{series.color}">{series.name}</span>: <b>{point.y}</b> ({point.change}%)<br/>',
valueDecimals: 2,
split: true
},
series: seriesOptions
});
}
$.each(names, function (i, name) {
console.log('name: '+name);
$.getJSON('http://localhost/projects/AGF/testobject.php', function (data) {
console.log(data);
seriesOptions[i] = {
name: name,
data: data
};
// As we're loading the data asynchronously, we don't know what order it will arrive. So
// we keep a counter and create the chart when all the data is loaded.
seriesCounter += 1;
if (seriesCounter === names.length) {
createChart();
}
});
});
});
</script>
</body></html>
我只是复制了PHP文件返回的内容,并从我自己的PHP文件testobject.php
testobject.php:
<?php
echo "?([
[1258934400000,290.88],
[1259020800000,291.25])";
?>
我将JSON缩短为2个对象并删除了注释。 Highstock需要第一个?
,它作为原始URL中的回调参数添加。每个对象中的第一个数字是日期的整数值。
最终,我将从数据库查询数据并以此格式输出。
我的问题是,如果答案基本相同,为什么这不起作用?
感谢。
答案 0 :(得分:1)
highstock不需要该问号也不是()
所以你的JSON无效。该标记适用于JSONP,因为高图是从不同的域请求数据。