I am trying to use highchart to draw a column chart (as you can see in jsfiddle example).
http://jsfiddle.net/md2zk/48/my jsfiddle example
However, I face two problems:
1 data overlapping. The image width is fixed, but the data values are dynamic. If the data is close, it will overlap each other. Is there a way to solve this?
- I want to show a line as the attched png file. However, seems can't find a way to do it.
Can someone help?
1.) Simple answer is to just rotate the labels:
Example here. If you want to get fancier, see this answer by @PawelFul.
2.) To add a yAxis line, set yAxis.lineWidth > 0:
See updated fiddle.