本当に簡単な質問ですが、理解できませんでした... jqplotを使用して、垂直方向のy軸ラベルを持つ折れ線グラフを生成しようとしました。jqplot Webサイトの例に基づくと、必要なのはこのプラグインを使用することだけですjqplot.canvasAxisLabelRenderer.min.js
。ローカルで試しましたが、うまくいきませんでした。誰かが私にこれについてのヒントを与えることができますか?これが私の問題のデモです。
以下は私のコードです:
$(document).ready(function(){
$.jqplot.config.enablePlugins = true;
var s1 = $.parseJSON($('#x_indi_val').text());
$.jqplot('chart1', [s1], {
seriesDefaults: {
showMarker:false,
pointLabels: { show:false } ,
},
series:[
{label:'Individuals'}
],
axes: {
xaxis: {
label :'Time units',
pad: 0,
},
yaxis: {
label: 'Number of individuals',
//jqplot example indicated that use the following js file can give you a vertical label, I tried locally, but it did not work
//renderer: $.jqplot.canvasAxisLabelRenderer
}
},
legend: {
show: true,
location: 'ne',
placement: 'inside',
fontSize: '11px'
}
});
});