我正在使用高图,问题是图表中的数字不是很好,因为其中一个在图表的一个区域内,而其他两个在线路连接器的左侧有点位移,我需要修好这个标签的位置,你能帮我吗?非常感谢!
$(function () {
$('#container').highcharts({
chart: {
type: 'pie',
options3d: {
enabled: true,
alpha: 45,
beta: 0,
viewDistance:200
}
},
title : {
text : ''
},
tooltip : {
enabled: false,
},
exporting: {
enabled: true,
filename: "x"
},
credits: {
enabled: false
},
plotOptions: {
pie: {
depth: 25,
dataLabels : {
enabled : true,
color : '#000000',
connectorColor : '#666666',
formatter: function() {
return '$'+Highcharts.numberFormat(this.y, 2, ".",",")
},
style: {
fontSize: '20px'
}
}
}
},
series: [{
data: [2000000, 400000, 600000]
}]
});
});