Reputation: 14112
On bar and column charts, how do you control the series overlap in highcharts? What is the properties name?
In powerpoint this is how I would control the gap between the inside of the bars:
Upvotes: 0
Views: 274
Reputation: 39139
You need to use pointPadding
property. Also groupPadding
can also be useful for you.
plotOptions: {
series: {
pointPadding: 0.2
}
}
Live demo: http://jsfiddle.net/BlackLabel/782qwgnr/
API Reference:
https://api.highcharts.com/highcharts/plotOptions.column.pointPadding
https://api.highcharts.com/highcharts/plotOptions.column.groupPadding
Upvotes: 1