(此文档仅供参考)
问题描述
自助仪表盘中有多个度量值,想要显示每个度量的数据标签,应该如何设置呢?
实现方案
此示例的扩展属性如下,相关的属性可以上echarts官网查看,https://echarts.apache.org/zh/index.html
注:一个度量一个itemStyle,根据实际的度量个数去添加itemStyle属性。
, "series": [ { "itemStyle": { "normal": { "label": { "show": true, "position": "top", "formatter": "function(c){ return (parseFloat(c.value[1])*100).toFixed(2) +'%'}" } } } }, { "itemStyle": { "normal": { "label": { "show": true, "position": "top", "formatter": "function(c){ return (parseFloat(c.value[1])*100).toFixed(2)+'%'}" } } } }, { "itemStyle": { "normal": { "label": { "show": true, "position": "top", "formatter": "function(c){ return (parseFloat(c.value[1])*100).toFixed(2) +'%'}" } } } } ]
最终效果如图: