Boosted_d16
Boosted_d16

Reputation: 14112

Series overlap in Highcharts

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:

enter image description here

Upvotes: 0

Views: 274

Answers (1)

ppotaczek
ppotaczek

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

Related Questions