Highcharts Separate Categories
Check this fiddle to get an idea of what I am talking about This is my xAxis configuration: 'xAxis': { 'categories': ['Category ONE', 'Category TWO'], 'allowDe
Solution 1:
plotOptions have some options which can control series. Padding is possible to get by changing value of groupPadding:
"plotOptions":{"column":{"groupPadding":0.1}}
And see it live: http://jsfiddle.net/JEGGf/42/
Post a Comment for "Highcharts Separate Categories"