I created a multiple axis chart using Amchart 4, but the grid line for second valueAxis cannot remove even I set
valueAxis.renderer.grid.template.disabled = true;
Can someone help me to remove the line?
The zero line is controlled by the baseGrid
. You have to disable that one too.
valueAxis.renderer.baseGrid.disabled = true;