amcharts 4 - Hide/show yAxis 留空 space

amcharts 4 - Hide/show yAxis is leaving empty space

我正在使用 show()hide() 方法实现 yAxes 的 show/hide 功能。但结果看起来是这样的:

有没有办法删除轴之间的空白 space?

hide只是将元素的不透明度设置为0。要完全移除轴占用的space,需要在轴的渲染器上将disabled设置为true .将其设置回 false 将完全恢复轴。

axis.renderer.disabled = true;