Highcharts – 在图表调整大小时调整图例大小?

无论如何在调整图表大小时动态设置图例项的特定宽度?我在图例中有一些非常长的项目名称,所以我需要指定一个宽度来强制文本换行,但我想在图表更改宽度时更改宽度.谢谢. 最佳答案 我找到了一个更好的解决方法:

chart.legend.options.width = newwidth;
chart.legend.itemStyle.width = newwidth;
for(var index in this.chart.series) {
        chart.legend.destroyItem(chart.series[index]);
}
chart.legend.render()
点赞