我有一个条形图,上面有我在 stackoverflow 上找到的一些示例代码。这是图表的代码:
var axisDates = ["Jan 19", "Jan 20", "Jan 21"]
var chartData = [2.61, 5.00, 6.00]
$.jqplot.config.enablePlugins = true;
var plot2 = $.jqplot('SubScoresGraph', [chartData], {
title: 'Some Plot',
seriesDefaults: {
renderer: $.jqplot.BarRenderer,
rendererOptions: {
barPadding: 1,
barMargin: 15,
barDirection: 'vertical',
barWidth: 50
},
pointLabels: { show: true }
},
axes: {
xaxis: {
renderer: $.jqplot.CategoryAxisRenderer,
ticks: axisDates
},
yaxis: {
tickOptions: {
formatString: '$%.2f'
}
}
},
highlighter: {
sizeAdjust: 7.5
},
cursor: {
show: true
}
});
在我的页面上,我包含 jquery 1.9.1 和最新版本的 jqplot。我有一个带有 jqplot 的 .js 文件,后跟所有插件文件中的代码。所以本质上它是将所有的 jqplot javascript 合并到一个文件中。
<script src="jquery-1.9.1.js"></script>
<script src="combined.js"></script>
但是,出于某种原因,我的图表中出现了一条线,我不知道为什么。我在我的代码中找不到任何明显的东西,当我在 jsfiddle 中尝试它时,它会在没有线条的情况下呈现。