我有一个 Highchart,当窗口改变大小时,它可以很好地调整宽度。但不是高度。我尝试了这个设置的图表大小,但它不能正常工作。当窗口改变大小时,有没有其他方法可以自动改变高度?
这是我的输出 css 代码。我有一个 Jquery UI 选项卡,另一个选项卡显示数据表
#output-container
{
float: right;
display: inline;
position: absolute;
right: 10px;
left: 400px;
top:120px;
overflow-y: auto;
}
这是我的chartdiv css:
#chartContainer{
margin: auto;
}
这是 js Chart 函数:
function qchart(){
chart = new Highcharts.Chart({
chart: {
renderTo: 'chartContainer',
type: 'column',
spacingBottom: 3,
//height: (screen.availHeight)-500,
marginRight: 30,
marginBottom: 30,
reflow: true
},
//etc..
};
//...
}