score:5

Accepted answer

From your screenshot, it looks like what you want to remove is the legend, not the x-axis labels.

Since each of the items in your obj JSON array have their own unique names, the legend will push out each of them unless you set legend: { enabled: false } in your chart options (see http://api.highcharts.com/highcharts#legend.enabled).

Please let me know if that answers your question.

score:4

You can try check out the property visible.

  xAxis :{
    visible : false
  }

Whether axis, including axis title, line, ticks and labels, should be visible. Defaults to true.


Related Query

More Query from same tag