如何更改 c3.js 中列之间的间距?

How do I change the spacing between columns in c3.js?

例如,我现在的图表是这样的

如何让它们看起来像这样?

您可以通过比率设置来完成:

bar.width.ratio = 0.8

bar: {
    width: {
        ratio: 0.8
    }
}