Highstock 图表 - JSON 输入无效
Highstock chart - JSON input not working
我正在尝试使用 Highcharts 中的 Highstock 创建图表,但不知道如何从 PHP 文件中提供正确的 JSON 数据。
这是我的 HTML 文件。 getJSON
中用来取数据的URL原来是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中作为回调参数添加的。每个对象中的第一个数字是日期的整数值。
最终我会从数据库中查询数据并以这种格式输出。
我的问题是,如果响应基本相同,为什么这不起作用?
谢谢。
highstock 不需要问号,()
也不需要,所以您的 JSON 无效。该标记适用于 JSONP,因为 highchart 正在请求来自不同域的数据。
我正在尝试使用 Highcharts 中的 Highstock 创建图表,但不知道如何从 PHP 文件中提供正确的 JSON 数据。
这是我的 HTML 文件。 getJSON
中用来取数据的URL原来是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中作为回调参数添加的。每个对象中的第一个数字是日期的整数值。
最终我会从数据库中查询数据并以这种格式输出。
我的问题是,如果响应基本相同,为什么这不起作用?
谢谢。
highstock 不需要问号,()
也不需要,所以您的 JSON 无效。该标记适用于 JSONP,因为 highchart 正在请求来自不同域的数据。