Highcharts - How can I decrease space between categories?

后端 未结 1 570
梦如初夏
梦如初夏 2021-01-20 19:39

\"Example

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

\"Planificación\", \"priorid

相关标签:
1条回答
  • 2021-01-20 19:59

    To do this pointPadding and pointWidth are what you want.

    Try this. The important bits are:

    plotOptions: {
                series: {
                    stacking: 'normal',
                    pointWidth: 50,
                    pointPadding: 0
                }
            },
    
    0 讨论(0)
提交回复
热议问题