饼状图的数据标签可能会出现 部分显示 部分不显示的问题,这时可以调一下distance和zIndex这两个属性(调整合适的值就可以将数据标签显示完全了)
plotOptions: {
pie: {
allowPointSelect: true,
cursor: 'pointer',
dataLabels: {
enabled: true,
format: '<b>{point.name}</b>: {point.percentage:.1f} %',
distance: 20,
zIndex:999,
style: {
color: (Highcharts.theme && Highcharts.theme.contrastTextColor) || 'black'
}
}
}
},