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

时间:2012-06-21 16:14:54

标签: jquery graph highcharts

Example for question

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

“Planificación”,“prioridad”和“gerencia”是类别,里面的数字是逐个系列的。

1 个答案:

答案 0 :(得分:6)

要执行此操作pointPaddingpointWidth是您想要的。

试试this。 重要的一点是:

plotOptions: {
            series: {
                stacking: 'normal',
                pointWidth: 50,
                pointPadding: 0
            }
        },