Highcharts - 如何减少类别之间的空间?

rol*_*res 3 jquery graph highcharts

问题的例子

我需要减少那个空间,......我怎么能这样做?

"Planificación","prioridad"和"gerencia"是类别,里面的数字是逐个系列的.

wer*_*eld 6

要做到这一点pointPaddingpointWidth是你想要的.

试试这个.重要的是:

plotOptions: {
            series: {
                stacking: 'normal',
                pointWidth: 50,
                pointPadding: 0
            }
        },
Run Code Online (Sandbox Code Playgroud)