嗨,我有左侧导航菜单,右侧的内容是高图。以下是我的 Highchart 配置,
this.InputData = {
chart: { type: 'column' },
title : { text : 'Overview' },
xAxis: {
categories: this._weekValues
},
yAxis: {
allowDecimals: false,
title: { text: 'some title'},
min: 0,
max: 100,
labels: {
formatter:function() {
var pcnt = (this.value / 100) * 100;
return Highcharts.numberFormat(pcnt, 0) + '%';
}
}
}
}
我有一个功能会在更改左侧菜单的大小时触发,
this.menuEvent.onChangeLeftMenu().subscribe(()=>{
Observable.timer().subscribe(()=>{
console.log('highchart redraw?');
});
});
如何redraw
在更改左侧菜单大小时调整图表大小?目前图表从我的 div 包装器中溢出。提前谢谢各位。