Wanted to change the alignment of bar graph to the center
CodePudding user response:
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