嗨,我已經離開了導航菜單,並且右側的內容是高圖。 以下是我Highchart配置,根據窗口大小調整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
或調整上改變我的圖我leftmenu大小?目前該圖表已經從我的div包裝器中溢出。先謝謝你們。