我无法弄清楚为什么yaxis标签没有显示。我正在使用Mark Cote的jquery.flot.axislabels.js。有人可以帮我看看下面的代码吗?
options = {
series: {
lines: { show: true, lineWidth: 1 },
points: { show: pshow, radius: 2 },
color: cnum
},
legend: {
position: "nw",
backgroundOpacity: 0.5
},
xaxis: {
mode: "time",
timeformat: timeformat,
timezone: "utc"
},
yaxis: {
ticks: 15,
tickDecimals: 3,
minTickSize: 1,
axisLabel: 'Milliseconds',
axisLabelPadding: 10,
axisLabelFontFamily: 'Verdana, Arial',
axisLabelFontSizePixels: 10
},
grid: { hoverable: true },
tooltip: true,
tooltipOpts: {
content: "%x.1 - %y.4",
shifts: { x: -60, y: 25 }
},
selection: { mode: "xy" }
};
var plot = $.plot(placeholder, rdata.data, options);
" rdata.data"包含多个系列。我试图只绘制一个,但没有帮助。
答案 0 :(得分:1)
谢谢你们。我解决了这个问题。我有插件如下,这导致了问题。
<script type='text/javascript' src='../js/flot/jquery.flot.axislabels.js'></script>
<script type='text/javascript' src='../js/flot/jquery.flot.js'></script>
一旦我拍下了订单,它就会很漂亮。