Highchart Gantt 移除 Y 轴标签

Highchart Gantt remove Y Axis label

我想隐藏 Highchart 甘特图的 Y 轴标签。

在我的fiddle that I attempted you will note that I am looking to completely remove Y Axis lable but my attempt creates empty column.

  yAxis: [{
        labels: {
        enabled: false
    },
  }]

也无法在 Highcharts Documentation 中定位任何内容

使用 visible 属性:

    yAxis: [{
        visible: false
    }]

现场演示: http://jsfiddle.net/BlackLabel/L1gt67zp/

API参考:https://api.highcharts.com/gantt/yAxis.visible