一个非常简单的问题,但我无法弄清楚...我尝试使用 jqplot 生成带有垂直 y 轴标签的线图。根据jqplot 网站的例子,我只需要使用这个插件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'
}
});
});