Highcharts - How can I decrease space between cate

2020-04-10 03:04发布

问题:

I need to reduce that space, ... How can I do it?

"Planificación", "prioridad" and "gerencia" are categories, the numbers inside are series by person.

回答1:

To do this pointPadding and pointWidth are what you want.

Try this. The important bits are:

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