I believe this is a general question not needing to much information from my highcharts data.
I want to prevent the columns to stack over/overlap each other, how do I do this?
See image-link below on how it is now
http://highslide.com/forum/download/file.php?id=3157
jsfiddle: http://jsfiddle.net/Dzs5q/
Please try and reproduce the error here @ http://jsfiddle.net/jugal/bgNBG/
Highcharts by default smartly reduces width of the columns if there are way too many of them so as to avoid overlapping.
The columns will tend to overlap if you have overridden the aforementioned default behavior by specifying
column.pointWidtheg: @ http://jsfiddle.net/jugal/bgNBG/2/
So to avoid overlapping, I see two options you have.
Option #1. Remove the
column.pointWidthThis will make the columns thinner in order to not overlap
eg: @ http://jsfiddle.net/jugal/bgNBG/
Option #2. Use
column.dataGroupingThis will help have a constant width of columns, but reducing (by grouping them) the number of columns instead to avoid clutter/overlap.
eg: @ http://jsfiddle.net/jugal/JraJW/4/
Similar Question @ https://stackoverflow.com/a/12354111/1566575