0

highchart issue screenshot

I want to adjust the highhcart bars spacing, I want to remove gaps and overllaping issue on two bar charts

1 Answers1

0

You can control the gap by using groupPadding property. To remove the space between two columns in one group, set pointPadding and borderWidth to 0.

plotOptions: {
    series: {
        borderWidth: 0,
        groupPadding: 0.1,
        pointPadding: 0
    }
}

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

API Reference:

https://api.highcharts.com/highcharts/series.bar.pointPadding

https://api.highcharts.com/highcharts/series.bar.groupPadding

ppotaczek
  • 36,341
  • 2
  • 14
  • 24