我的jqplot图表的画布高度存在严重问题。
这是一个水平条形图。条形图的数量是动态的,因此画布的高度也应该是动态的。
我得到的是,无论条形数量如何,画布的高度始终相同。
barWidth
,barMargin
,barPadding
将被忽略。
这是我的代码:
$.jqplot(tip, data, {
stackSeries : false,
captureRightClick : true,
seriesDefaults : {
renderer : $.jqplot.BarRenderer,
rendererOptions : {
barDirection : 'horizontal',
barWidth : 15,
barPadding : 5,
barMargin : 15,
highlightMouseDown : true
},
shadowAngle : 135,
pointLabels : {
show : true,
location : 'e',
edgeTolerance : -40
}
},
title : {
show : true
},
series : [{
label:'aaa'
}],
axesDefaults : {
tickRenderer: $.jqplot.CanvasAxisTickRenderer ,
},
axes: {
yaxis: {
renderer: $.jqplot.CategoryAxisRenderer,
}
},
});
是否有人理解为什么身高不会自动适应?