折れ線グラフには jqplot を使用しましたが、さらに yaxis を使用することになるかもしれません。したがって、yaxis と y2axis を使用すると、水平グリッド ラインがチャート上で適切に表示されます。しかし、y3axis または y4axis を使用すると、水平グリッド線はありません。jqplot がこれをサポートしていないか、バグである可能性があると思います。
ここを見てください:
var tfsGraphNodes= [[1,4],[2,2],[3,21],[4,61],[5,71],[6,10]];
jQuery.jqplot('chart1', [tfsGraphNodes], {
title: 'Applicant Behaviour',
series: [{color: 'green',label: 'Applicant Trend', yaxis: "y4axis"}],
legend: {show: true},
highlighter: {showTooltip: true},
axes: {
xaxis: {
tickOptions: {formatString: '%d'},
//Comment or un-comment to see what happens on xaxis's ticks
tickInterval: 1
},
y4axis: {
tickOptions: {
showGridline: true
}
}
}
});
私の現在のjqplotのバージョンは: 2007.04.27
そこで、対処法を教えていただけないでしょうか。解決策をいただければ幸いです