猿问

highcharts绘制饼图的问题

这只是一部分代码,我想显示的比例保留两位小数

 

chart3 = new Highcharts.Chart({
chart: {
renderTo: 'container3',
plotBackgroundColor: null,
plotBorderWidth: null,
plotShadow: false
},
colors:[
'#66FF66',
'red',
'black'
],
title: {
text: '运营情况'
},
tooltip: {
pointFormat: '{series.name}: <b>{point.percentage}%</b>',
percentageDecimals: 1
},
plotOptions: {
pie: {
allowPointSelect: true,
cursor: 'pointer',
dataLabels: {
enabled: true,
color: '#000000',
connectorColor: '#008000',
format: '<b>{point.name}</b>: {point.percentage:.1f} %'
},

}
},
series: [{
type: 'pie',
name: '所占比率',
data: [
['运营', b4_ratio],

['停运', b5_ratio],
['无运营信息',b6_ratio]
]
}]
});

FFIVE
浏览 597回答 3
3回答
随时随地看视频慕课网APP

相关分类

Java
我要回答