HIGH CHARTS
Please look at JSFIDDLE. Here the bars overlap each other. How to prevent this by resizing the bar width dynamically.
HIGH CHARTS
Please look at JSFIDDLE. Here the bars overlap each other. How to prevent this by resizing the bar width dynamically.
If possible remove container inline css height.
Fiddle Demo
Or you can use scrollbar using highstock.js
Fiddle demo
If happens because you set bar width with fixed value. If you want bars to take all available place for width, instead of using
pointWidth
, setpointPadding
to 0,groupPadding
to 0 andborderWidth
to 0.API Reference:
http://api.highcharts.com/highcharts/plotOptions.bar.pointPadding
http://api.highcharts.com/highcharts/plotOptions.bar.groupPadding
http://api.highcharts.com/highcharts/plotOptions.bar.borderWidth
Example:
http://jsfiddle.net/yek6g5vy/