尝试使用Highstock图重新创建一个简单的html页面示例但没有成功。似乎在我在网上找到的多个例子中做同样的事情,但情节仍然是空的。
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>This is title</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="http://code.highcharts.com/highcharts.js"></script>
<script src="http://code.highcharts.com/modules/exporting.js"></script>
<script type="text/javascript">
$(document).ready(function() {
var options = {
chart: {
renderTo: 'container',
defaultSeriesType: 'spline',
marginRight: 130,
marginBottom: 25,
},
title: {
text: 'test plot'
},
xAxis: {
type: 'datetime',
categories: []
},
yAxis: {
text: 'value'
},
series: [{name:'myline',data:'<?php $data = array(2,3,1,4); echo json_encode($data) ?>'}]
}
chart = new Highcharts.Chart(options);
});
</script>
</head>
<body>
<div id="container" style="width: 100%; height: 400px; margin: 0 auto"></div>
</body>
</html>
如果我将series
行更改为
series: [{name:'myline',data:[2,3,1,4]}]
它有效。所以,问题必须在这一行和php脚本上。
然而,我不能使它与PHP一起工作。尝试使用格式正确的数字json_encrode
和其他一些东西打印字符串,但似乎无法使其正常工作。我在这种情况下看到的只是图表上没有线条。从php执行脚本打印输出结果似乎也不会产生脚本的输出,只是一个空行...我做错了什么?
答案 0 :(得分:0)
事实证明这是一个愚蠢的错误,因为我在这里是个菜鸟。我必须在我的计算机上设置一个Web服务器(我使用LAMP)并将我的php文件放入/ var / www /目录。这个data:<?php $data = array(2,3,1,4); echo json_encode($data); ?>
可以正常工作。