0

Wanted to change the alignment of bar graph to the center enter image description here

a.ak
  • 659
  • 2
  • 12
  • 26
kubawavy
  • 27
  • 4

1 Answers1

1

You need to disable grouping for your series:

  plotOptions: {
    series: {
      grouping: false
    }
  }

Live demo: http://jsfiddle.net/BlackLabel/wz3cjmfn/

API Reference: https://api.highcharts.com/highcharts/series.column.grouping

ppotaczek
  • 36,341
  • 2
  • 14
  • 24