Highcharts增加了分组数据系列之间的间距

Highcharts增加了分组数据系列之间的间距,highcharts,space,between,series,Highcharts,Space,Between,Series,我想对数据系列进行分组,以便它们彼此分离。目前我的图表看起来像(s26.postimg.org/ew08ku2mh/org.jpg),但应该像() 请查看我建议更改您的数据设置 尝试: plotOptions: { "series":{ "pointPadding":0, "groupPadding":0.1, "pointWidth":25, "dataLabels":{ "enable

我想对数据系列进行分组,以便它们彼此分离。目前我的图表看起来像(s26.postimg.org/ew08ku2mh/org.jpg),但应该像()

请查看

我建议更改您的数据设置

尝试:

plotOptions: {
    "series":{  "pointPadding":0,
                "groupPadding":0.1,
                "pointWidth":25,
                "dataLabels":{ "enabled":true,
                               "style":{"color":"black","fontSize":"12"},
                                "format":"{point.y:.1f}"
                }
    }
}