I\'m working with Highchart. I\'ve got a multiple series graph in which each series have their own y-axis.
pretty much like this one (jsfiddle)
when we cli
We can hide Yaxis label without hiding the y-Axis without hiding the series by returning the empty string as follows:
yAxis: { title: '', labels: { formatter: function() { return ''; }, style: { color: '#4572A7' } }
},