Highcharts - How can I decrease space between categories?

我的未来我决定 提交于 2019-12-20 02:13:47

问题


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
            }
        },


来源:https://stackoverflow.com/questions/11142378/highcharts-how-can-i-decrease-space-between-categories

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!