如何从 highcharts 热图中的次要 y 轴删除刻度线

How to remove tick lines from secondary y axis in highcharts heatmap graph

I have manipulated highcharts heatmap graph to suit some of my requirement. But I am not able to hide the tick lines on secondary y axis. Below is the jsfiddle link of what I have done. http://jsfiddle.net/sandeepkparashar/39xBU/389/389 请建议如何隐藏刻度线。

实际上,那些线是网格线和轴线(底部的那条)。您可以通过将它们的宽度设置为 0 来禁用它们。

xAxis: {
 lineWidth: 0 
 ...
},

yAxis: {
 gridLineWidth: 0,
 ...
}

示例:http://jsfiddle.net/sebdom/39xBU/390/