我正在创建一个像this one一样的堆积条形图。请注意,每个堆栈的总数显示在顶部,如何禁用/隐藏它?
答案 0 :(得分:12)
yAxis: {
min: 0,
title: {
text: 'Total fruit consumption'
},
stackLabels: {
enabled: false,
style: {
fontWeight: 'bold',
color: (Highcharts.theme && Highcharts.theme.textColor) || 'gray'
}
}
},
你需要像上面的例子一样将stackLabels变为false
stackLabels: {
enabled: true,