我的名字是乔希,我在一家社区大学报纸工作。我最近才发现 Highcharts 并试图将交互式图表嵌入到我们网站的帖子中,但没有成功。实际上,这是一次彻底的失败。
我已经阅读并尝试这篇文章无济于事: highcharts and wordpress
没有人知道我可以向谁提出这个问题,即使我觉得我已经尝试了所有建议的解决方案,但不幸的是,我在 html 和代码方面相当文盲。任何帮助将不胜感激。
我正在使用 Wordpress 3.5.1 这是我目前所处的位置:我正在运行:在帖子和页面插件和交互式 Javascript 和 CSS 中允许 PHP。
对于帖子的标题选项,我有:
<script type="text/javascript" src="http://code.jquery.com/ui/1.9.2/jquery-ui.js"> </script>
<script src="http://www.domain.com/wp-content/uploads/2013/03/highcharts1.js" type="text/javascript"></script>
在一些网站(包括这个)中,我看到提到将 Highcharts 库上传到您的 wordpress 服务器。我已经通过媒体库上传了 highcharts.js 文件,但我觉得我做错了?
在帖子本身中,我放置了:
[php]
$(function () {
var chart;
$(document).ready(function() {
chart = new Highcharts.Chart({
chart: {
renderTo: 'container',
type: 'line',
marginRight: 130,
marginBottom: 25
},
title: {
text: 'State Funding of DSPS Services',
x: -20 //center
},
subtitle: {
text: 'Source:MPR Associates Report',
x: -20
},
xAxis: {
categories: ['2003-04', '2004-05', '2005-06', '2006-07', '2007-08',
'2008-09', '2009-10', '2010-11', '2011-2012', '2012-13']
},
yAxis: {
title: {
text: '$ Million'
},
plotLines: [{
value: 0,
width: 1,
color: '#808080'
}]
},
tooltip: {
formatter: function() {
return '<b>'+ this.series.name +'</b><br/>'+
this.x +': '+ this.y +' Million';
}
},
legend: {
layout: 'vertical',
align: 'right',
verticalAlign: 'top',
x: -10,
y: 100,
borderWidth: 0
},
series: [{
name: 'College Total Funding',
data: [77.8, 81.8, 86.2, 102.1, 109.3, 108.9, 64.9, 64.8, 64.6, 65.7]
}]
});
});
});
[/php]
<div id="container" style="width: 100%; height: 400px"></div>
该页面出现空白,就像过去一百次左右的尝试一样。如果这是张贴在错误的位置或不受欢迎的地方,我深表歉意。非常感谢任何建议或解决方案。
谢谢你,J