我的jqplot图表与点标签的关键例外完美配合,即使使用jqplot website中的基本简单示例也无法显示。
上面的一个例子我放入了我的index.html.erb
文件:
<div id="chart1" style="height:400px;width:300px; "></div>
<script>
$(document).ready(function(){
var line1 = [14, 32, 41, 44, 40, 47, 53, 67];
var plot1 = $.jqplot('chart1', [line1], {
title: 'Chart with Point Labels',
seriesDefaults: {
showMarker:false,
pointLabels: { show:true }
}
});
});
</script>
这应该会产生一个在每个点上都带有标签的折线图,但我得到的是:
我尝试过10个来自不同人的例子,这些例子以不同的方式实现点标签,但没有成功。
在Rails中我使用jqplot-rails
gem,但结果是一样的。有谁知道这意味着什么?我试过包括:
<script type="text/javascript" src="http://www.jqplot.com/src/jquery.min.js"></script>
<script type="text/javascript" src="http://www.jqplot.com/src/jquery.jqplot.min.js"></script>
<script type="text/javascript" src="http://www.jqplot.com/src/plugins/jqplot.barRenderer.min.js"></script>
<script type="text/javascript" src="http://www.jqplot.com/src/plugins/jqplot.categoryAxisRenderer.min.js"></script>
<script type="text/javascript" src="http://www.jqplot.com/src/plugins/jqplot.pointLabels.min.js"></script>
在上面的代码片段之前(为了确保我使用的是最新的jqplot),但它没有任何区别。
非常感谢任何帮助,谢谢。