a way to adjust bar width and padding when there are many values on color dimension
I create a bar chart. When there are many values on the color dimension, I found the bars are squeezed. I tried to change the pointPadding and groupPadding, but it doesn't help.
https://jsfiddle.net/BlackLabel/stLbx0pn/
I suggest if highcharts provides a way to adjust bar width and padding on this scenario
-
AdminPaweł Fus (Admin, Highcharts JS) commented
Thanks for sharing the idea!
The problem is that with given height (500px) you get only ~200px to render bars. If you render 100 bars, you get ~2px per bar. It's impossible to render them with "pointWidth=4px".
I suggest to increase chart's height or use scrollablePlotArea or decrease pointWidth.