对于使用echarts要显示百分比,要改两个地方,第一个地方时坐标轴显示为百分比的格式,第二个是让值以百分比的形式显示,如50,在图上面显示为50%。
yAxis: [
{
type: 'value',
axisLabel: {
show: true,
interval: 'auto',
formatter: '{value} %'
},
show: true
}
],
第二个是改series
itemStyle: {
normal: {
label: {
show: true,
position: 'top',
formatter: '{b}\n{c}%'
}
}
},
版权声明:本文为u012235651原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。