Space between columns

Chanan Berler picture Chanan Berler · Mar 5, 2013 · Viewed 31.2k times · Source

I have a column chart where for each X value I have two series. But the graph shows a wide spacing between each X value.

Q: How can I do in Highchart to have 1px space between the columns and the y Axis?

Answer

Ahmed Shaban picture Ahmed Shaban · Apr 16, 2013

Update pointPadding :0.2 to pointPadding :0 in

plotOptions: {
                column: {
                    pointPadding: 0,
                    borderWidth: 0
                }
            },