-1

I would like to edit or remove the gaps in a Higharts chart like this: enter image description here

Is there any way to style or configure my chart to achieve this?

This is the Demo: https://www.highcharts.com/samples/codepen/highcharts/demo/bar-stacked

Thanks

user3241778
  • 294
  • 2
  • 4
  • 20

1 Answers1

0

You can control the space between bars using pointPadding, groupPadding and borderWidth properties:

plotOptions: {
  series: {
    stacking: 'normal',
    pointPadding: 0,
    groupPadding: 0,
    borderWidth: 0
  }
}

Demo:

API reference:

Wojciech Chmiel
  • 7,302
  • 1
  • 7
  • 16