I want to hide the first yAxis shortcut in highcharts. I can not find how to do this. This question closely revises this question: Hide the first label of the label . However, the solution I'm looking for is for high graphics.

From the image above, I just would like -10 to be hidden.
What do I need to add options to accomplish this?
The code added below is just a general function that I created that takes a parameter, which I called the parameters (object) that I set, with a list of parameters (for example, name, subtitles, series ...).
var hc_bubble = function(options){ $(options.target).highcharts({ chart: { type: 'bubble', zoomType: 'xy' }, title: { text: options.title || 'unknown' }, subtitle: { text: options.subtitle || '' }, xAxis: { type: options.date || 'datetime', labels: { formatter: function() { return Highcharts.dateFormat("%b %Y", this.value) } }, title: { enabled: true, text: options.xTitle || 'unknown' }, startOnTick: true, endOnTick: true, showLastLabel: true }, yAxis: { title: { text: options.yTitle || 'unknown' } }, tooltip:{ headerFormat: '<b>{series.name}</b><br>', pointFormat: '{point.y} ' + options.yType || 'Connections' }, series: options.series }); }
source share