function zdATu() {
var chart = Highcharts.chart('zdTu', {
title: {
text: '重点工作'
},
chart:{
height:280
//width:300
},
exporting: {  
            enabled:false  
},
tooltip: {
headerFormat: '{series.name}<br>',
pointFormat: '{point.name}: <b>{point.percentage:.1f}%</b>'
},
plotOptions: {
pie: {
allowPointSelect: true,
cursor: 'pointer',
dataLabels: {
enabled: true,
format: '<b>{point.name}</b>: {point.percentage:.1f} %',
},
showInLegend: true // 设置饼图是否在图例中显示
}
},
colors:[
                        '#2cbf4d',//第一个颜色,欢迎加入Highcharts学习交流群294191384
                        '#ecb60c',//第二个颜色
                        '#d83617'//第三个颜色
                      
                      ],
series: [{
type: 'pie',
name: '重点工作比例',
data: [
{
name: '完成',
y: listDept[0].comNum+1,
sliced: true,  // 默认突出
selected: true // 默认选中 
},
//['完成', listDept[0].comNum+1],
['未完成', listDept[0].unComNum],
['逾期', listDept[0].yqNum]
]
}]
});
}