score:1

Accepted answer

you can use the drilldown and drillup callbacks to customize your chart options, like:

events: {
  drilldown() {
    const chart = this;

    chart.title.hide()
            
            chart.axes.foreach(axis => axis.update({visible: false}, false, false))
            chart.reflow()
  },
  drillup() {
    const chart = this;

    chart.title.show()
            chart.axes.foreach(axis => axis.update({visible: true}, false, false))
            chart.reflow()
  }
}

demo: https://jsfiddle.net/blacklabel/3ac9hrfj/

api: https://api.highcharts.com/highcharts/yaxis.visible


Related Query

More Query from same tag