我有一个由数组组成的简单图表,如下所示:
var plot2 = [[1,1.3,"1.3"],[2,0.3,"0.3"],[3,3.3,"3.3"],[4,1.7,"1.7"]];
然后它被添加到这样的 div 中。
var plot1 = $.jqplot ('graph', [plot2],{
grid:{
background:"transparent",
borderColor:"#6c9922",
gridLineColor:"#6c9922",
shadow:false
},
axes: {
xaxis: {
tickOptions:{formatString:'%.0f'},
pad: 0,
min:0,
max:5
},
yaxis: {
tickOptions:{formatString:'%.1f'},
pad: 0,
min:0,
max:5
},
},
series:[{
lineWidth:2,
markerOptions: {size:2,style:"circle"}
}],
seriesDefaults:{
showMarker:true,
pointLabels:{ show:true }
},
seriesColors:["#ffffff"]
});
我的问题是我网站的一些用户报告说他们看不到图表,使用最新的 Chrome 和 Firefox,他们得到并错误说
Uncaught Canvas dimension not set jquery.jqplot.min.js:57
他们中的一些人说,只有将缩放级别设置为 100% 时,该图表才有效。
从那以后,这一切都没有多大意义,并且在我尝试过的每个系统上一切都完美无缺。
那么有人知道什么是错的吗?
我已经搜索了错误,但我唯一能找到的地方是 jqplot 插件的源代码。